Bugs item #3476573, was opened at 2012-01-20 01:33
Message generated for change (Comment added) made by milde
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=422030&aid=3476573&group_id=38414
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: HTML writer
Group: None
>Status: Closed
>Resolution: Invalid
>Priority: 3
Private: No
Submitted By: anatoly techtonik (techtonik)
Assigned to: Nobody/Anonymous (nobody)
Summary: reST: inconsistent list rendering
Initial Comment:
Sometimes reST inserts extra paragraph into each list item, the list height increases and it looks ugly.
Example:
http://www.tele3.cz/jbar/rest/rest.html
Changes:
On August 1st of 2011 Rietveld moved from Subversion to Mercurial.
As a result of ommitting some branches, revision number decreased.
`801:2f5709156db2`_ - 2011-01-10 -- Options meaning changed
- Subversion 1.7 support, by Jocelyn Fiat (issue #359, 5529052)
- Command line options made intuitive (review 5476044)::
1. on first submission
-t, --title issue subject
-m, --message issue description
-F, --file <file> read description from file
2. on issue update
-t, --title new patchset title
-m, --message message to reviewers
-F, --file <file> read message from file
- New upload_complete hook for async processing (review 5440044)
- Print error messages for server errors (review 5399053)
- Fix fail when Hg is executed from subdir (issue #345, 5364065)
- Allow empty files to be uploaded from Git (review 5370042)
`709:840f9bb917ba`_ - 2011-09-22
- Add repository ID field to link Issue with Repository (review 5093045)
- More fixes to fit upload.py options in one screen (review 4962070)
`695:ba3f47e4a614`_ - 2011-09-07
- Hide perforce options unless explicitly requested (4968071)
- --send_patch option to attach diff instead of inline, by Kaelyn (4881041)
- Ignore git submodules when generating diffs (issue #324, 4822044)
- Escape @ in filenames when running SVN commands (issue #322, 4745041)
- Remove MIMETYPES whitelist as a way to detect if file is binary (4641078)
----------------------------------------------------------------------
>Comment By: Günter Milde (milde)
Date: 2012-01-23 03:44
Message:
This is intended and specified behaviour, see
http://docutils.sourceforge.net/docs/user/config.html#compact-lists
> Remove extra vertical whitespace between items of bullet lists and
enumerated lists, when list items are all "simple" (i.e., items each
contain one paragraph and/or one "simple" sublist only).
Consistent behaviour (paragraph elements in every list item) can be
achieved by setting compact-lists to False (or using the "html-strict"
writer from the Docutils sandbox).
Removing the vertical whitespace between list elements of all lists can be
achieved via a custom CSS stylesheet containing a rule like:
li> p {
margin-top: 0;
margin-bottom: 0;
}
----------------------------------------------------------------------
Comment By: anatoly techtonik (techtonik)
Date: 2012-01-20 01:35
Message:
SourceForge screwed up markup, so here is the file.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=422030&aid=3476573&group_id=38414
|