| Name | Last modified | Size | Description | |
|---|---|---|---|---|
| Parent Directory | - | |||
| data/ | 09-Feb-2010 11:46 | - | ||
| docs/ | 09-Feb-2010 11:46 | - | ||
| html4strict.py | 09-Feb-2010 11:46 | 4.0K | ||
| html4strict/ | 09-Feb-2010 11:46 | - | ||
| tools/ | 09-Feb-2010 11:46 | - | ||
A HTML writer, generating XHTML 1.0 Strict for styling with CSS 2.1.
Docutils' default HTML Writer, docutils.writers.html4css1 generates output that conforms to the HTML 4.01 Transitional DTD and to the Extensible HTML version 1.0 Transitional DTD (almost strict).
Almost, as it contains some deprecated constructs and "a minimum of formatting information" in order to ensure correct display with deficient but widespread browsers.
| [1] | Tested with Firefox, Midori, Konqueror and Opera. As Safari and Google Chrome use the same rendering engine as Midori and Konqueror (WebKit), they should work fine as well. |
This writer is for you, if you
Command line use:
rst2html_strict.py [options] [<source> [<destination>]]
The full usage text can be obtained with the --help option.
For an example of programmatic use, see rst2html_strict.py.
The writer module subclasses the html4css1.Writer and html4css1.HTMLTranslator classes. Some methods are overwritten to remove deprecated HTML constructs or hard coded formatting.
The html4css2.css style sheet extends the standard layout for CSS2-conforming Html browsers.
A counter for enumerated lists replaces the deprecated "start" attribute.
The complicated part was to find out a correct CSS rule-set to replicate the standard behaviour with hanging indent (list-style: "outside"). There is a W3C example to number nested list items, however, the result is similar to 'list-style: inside': subsequent lines start below the label instead of a hanging indent.
Most Internet resources come to the conclusion that "there’s no straightforward replacement mechanism" [tekkie], "the solution is buried so deep in CSS2 that there's no point in trying to do it in CSS for the foreseeable future" [webjunction], or "the main point to note is that there is no direct mapping from the previous behaviour to CSS" [codelair]. Taming Lists did give valuable advise but no working complete solution.
The advise is "Use 'HTML 4.01 Transitional' and keep the START attribute". [highdots], especially, since "There are arguments over whether the start attribute is presentational or not, and indeed HTML5 has declared that it is no longer deprecated in the current working drafts (at the time of writing)" [dev.opera].
| [tekkie] | http://tekkie.flashbit.net/css/replacement-for-deprecated-ol-li-start-value-html-attributes, 2009. |
| [webjunction] | http://lists.webjunction.org/wjlists/web4lib/2001-September/026413.html, 2001. |
| [codelair] | http://www.doheth.co.uk/codelair/html-css/deprecated#start, 2007. |
| [highdots] | http://www.highdots.com/forums/cascading-style-sheets/using-css-set-start-number-262555.html, 2008. |
| [dev.opera] | http://dev.opera.com/articles/view/automatic-numbering-with-css-counters/, 2008. |
However, a reasonable replacement of 'outside'-styled ordered lists with CSS is possible:
The ordered list defines/resets the counter, the automatic numbering is suppressed:
ol {
counter-reset: item;
list-style-type: none ! important;
}
The label is defined as "before" pseudo element. The content consists of the counter and a separator (by default a trailing dot):
ol > li:before {
counter-increment: item;
content: counter(item) ".";
}
The label is right aligned in a box. Both the label and the list content (which Docutils puts in a paragraph node) must be displayed as "inline-block" so that they line up:
ol > li:before {
display: inline-block;
vertical-align: top;
width: 2em;
padding-right: 0.5em;
text-align: right;
}
ol > li > p { display: inline-block; }
However, subsequent paragraphs are to be set as nested block elements:
ol > li > p + p {
display: block;
margin-top: 0em;
}
The hanging indent is realized via a negative "textindent" which must be reset for the list content to prevent over-striking:
ol > li { text-indent: -2.5em; }
ol > li > p { text-indent: 0em; }
The resulting list can be customized to a large extend
Different label types and separators are possible, e.g.:
ol.lowerroman > li:before {
content: "(" counter(item, lower-roman) ")";
}
nested counters (1, 1.1, 1.1.1, etc):
ol.nested > li:before {
content: counters(item, ".") ". ";
}
chapter/section prefix, continued lists, ...
Hanging indent for numbered section headings and ToC entries.
No tables for Footnotes and Citations (for footnotes see http://www.archiva.net/footnote/index.htm and
option-list as styled <dl> (remove --option-limit option).
search stylesheets along standard path if enclosed in <> (like the RST syntax for include files).
Validate output with "critical" cases not covered by the functional test (e.g. headings with level > 6).
Check, whether we should use the advise from http://www.evotech.net/blog/2009/02/css-browser-support/
To force IE8 to render your page in IE8 compliance mode, include the following meta tag:
<meta http-equiv="X-UA-Compatible" content="IE=8" />
Move widely supported constructs to the html4css1 writer.
Number sections with CSS if sectnum_xform is False.