ordered lists bug in 8.2.5

View: New views
2 Messages — Rating Filter:   Alert me  

ordered lists bug in 8.2.5

by Alex Efros-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi!

.. letter
   . number

incorrectly rendered by 8.2.5 as

a. letter
   a. number

instead of

a. letter
   1. number

Actually, xhtml generated correctly, so this bug somewhere in css...
Found it! In xhtml11.css, after:

    div.olist2 ol {
      list-style-type: lower-alpha;
    }

add this to fix that bug:

    div.olist2 div.olist ol {
      list-style-type: decimal;
    }

--
                        WBR, Alex.
_______________________________________________
asciidoc-discuss mailing list
asciidoc-discuss@...
http://lists.metaperl.com/cgi-bin/mailman/listinfo/asciidoc-discuss

Re: ordered lists bug in 8.2.5

by Stuart Rackham :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks for the bug report Alex.
Fixed, see changeset https://sharesource.org/hg/asciidoc/rev/3e21b55ef0b1

Cheers, Stuart

Alex Efros wrote:

> Hi!
>
> .. letter
>    . number
>
> incorrectly rendered by 8.2.5 as
>
> a. letter
>    a. number
>
> instead of
>
> a. letter
>    1. number
>
> Actually, xhtml generated correctly, so this bug somewhere in css...
> Found it! In xhtml11.css, after:
>
>     div.olist2 ol {
>       list-style-type: lower-alpha;
>     }
>
> add this to fix that bug:
>
>     div.olist2 div.olist ol {
>       list-style-type: decimal;
>     }
>
_______________________________________________
asciidoc-discuss mailing list
asciidoc-discuss@...
http://lists.metaperl.com/cgi-bin/mailman/listinfo/asciidoc-discuss