Kees Nuyt <k.n...@zonnet.nl> wrote:
> 
> Using
>  Google Chrome browser v3.0.195.33 and
>  Internet Explorer 8.0.6001.18865.
> 
> But indeed, Firefox v3.5.5 shows the zeroes!
> 

You can download:

http://api.browsershots.org/screenshots/091209-075848-jeremy.cowgar.com-4005547.zip

and see the results in 53 different browsers. IE, Avant, Safari and Chrome all 
show 1. 2. 3. The rest show 0. 0. 0. Further, all text based browsers I've 
found show 0 0 0.

> 
> Ok, Jeremy has a point in adding a non-digit as a token for
> a automatically numbered list, and seeding the enumeration
> value only if an explicit digit is given.

I committed the change, however, it does not seed anything. It just uses normal 
HTML syntax. For instance:

  #  Red
  #  Green
  #  Blue

is output as:

<ol>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ol>

The old syntax of:

  12.  Red
  98.  Green
  3.  Blue

still exists and still outputs:

<ol>
<li value="12">Red</li>
<li value="98">Green</li>
<li value="3">Blue</li>
</ol>

Jeremy

_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to