diff options
author | John Ankarström <john@ankarstrom.se> | 2021-01-31 17:53:13 +0000 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-01-31 17:53:13 +0000 |
commit | 3ab42a5fb02a2652cae089bd3f936729fd49382d (patch) | |
tree | 3796f303e935ff9c532dba8467c174e418465b11 /README.html | |
parent | 16685c2197586e8f1bd1168827f7b98c868bc1ac (diff) | |
download | em-3ab42a5fb02a2652cae089bd3f936729fd49382d.tar.gz |
Support [A-Za-z] in list item values
HTML/CSS makes this a bit awkward; all the better if em
can handle it for you.
Diffstat (limited to 'README.html')
-rw-r--r-- | README.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/README.html b/README.html index 3b19f94..34df622 100644 --- a/README.html +++ b/README.html @@ -3,9 +3,9 @@ maximally readable.</b> It is similar to Markdown, but it has a few key advantages: </p> <ol> -<li value="1">It is more readable. -</li><li value="2">It is simpler to parse. -</li><li value="3">There is <i>not</i> more than one way to do it: for any given HTML, there is +<li value="1" style="list-style-type: decimal">It is more readable. +</li><li value="2" style="list-style-type: decimal">It is simpler to parse. +</li><li value="3" style="list-style-type: decimal">There is <i>not</i> more than one way to do it: for any given HTML, there is never more than a single possible em representation. </li> </ol> @@ -52,10 +52,10 @@ Example of *italic text*, _bold text_ and `teletype text`. The marks are only valid in certain positions: </p> <ol> -<li value="1">At word borders -</li><li value="2">At the beginning of a word after an opening parenthesis -</li><li value="3">At the end of a word before any of <tt>.,:;?!)</tt> -</li><li value="4">At the end of a word before a closing parenthesis followed by any of <tt>.,:;?!</tt> +<li value="1" style="list-style-type: decimal">At word borders +</li><li value="2" style="list-style-type: decimal">At the beginning of a word after an opening parenthesis +</li><li value="3" style="list-style-type: decimal">At the end of a word before any of <tt>.,:;?!)</tt> +</li><li value="4" style="list-style-type: decimal">At the end of a word before a closing parenthesis followed by any of <tt>.,:;?!</tt> </li> </ol> <hr/> @@ -252,10 +252,10 @@ This is another paragraph. <hr/> <h2 id="references">References</h2> <ol class="reflist"> -<li value="1" id="ref1"><a href="#hyperlinks">#hyperlinks</a> -</li><li value="2" id="ref2"><a href="../tree/emparse">../tree/emparse</a> -</li><li value="3" id="ref3"><a href="../tree/README">../tree/README</a> -</li><li value="4" id="ref4"><a href="../tree/test.em">../tree/test.em</a> -</li><li value="5" id="ref5"><a href="#reference-lists">#reference-lists</a> +<li value="1" style="list-style-type: decimal" id="ref1"><a href="#hyperlinks">#hyperlinks</a> +</li><li value="2" style="list-style-type: decimal" id="ref2"><a href="../tree/emparse">../tree/emparse</a> +</li><li value="3" style="list-style-type: decimal" id="ref3"><a href="../tree/README">../tree/README</a> +</li><li value="4" style="list-style-type: decimal" id="ref4"><a href="../tree/test.em">../tree/test.em</a> +</li><li value="5" style="list-style-type: decimal" id="ref5"><a href="#reference-lists">#reference-lists</a> </li> </ol> |