mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
* lisp/net/shr.el (shr-tag-ol): Don't automatically assume 1-indexing for all ordered lists, use <ol> if given. * etc/NEWS: Announce change in shr behavior. * test/data/shr/ol.html: * test/data/shr/ol.txt: New test data files.
29 lines
368 B
HTML
29 lines
368 B
HTML
<ol>
|
|
<li>one</li>
|
|
<li>two</li>
|
|
<li>three</li>
|
|
</ol>
|
|
|
|
<ol start="10">
|
|
<li>ten</li>
|
|
<li>eleven</li>
|
|
<li>twelve</li>
|
|
</ol>
|
|
|
|
<ol start="0">
|
|
<li>zero</li>
|
|
<li>one</li>
|
|
<li>two</li>
|
|
</ol>
|
|
|
|
<ol start="-5">
|
|
<li>minus five</li>
|
|
<li>minus four</li>
|
|
<li>minus three</li>
|
|
</ol>
|
|
|
|
<ol start="notanumber">
|
|
<li>one</li>
|
|
<li>two</li>
|
|
<li>three</li>
|
|
</ol>
|