Re: Does start= work for numbered lists in epub3?
Posted by
mojavelinux on
Oct 25, 2018; 7:13am
URL: https://discuss.asciidoctor.org/Does-start-work-for-numbered-lists-in-epub3-tp6475p6546.html
You're correct, support for this feature was missing from Asciidoctor EPUB3. I just added it to the master branch.
Cheers,
-Dan
On Mon, Sep 17, 2018 at 2:36 PM jtkorb [via Asciidoctor :: Discussion] <
[hidden email]> wrote:
I have an AsciiDoc document I'm trying to publish using asciidoctor-epub3. I've converted the document to use the "spine" layout described in the manual, but can't seem to get numbered lists that depend on start= to work. Here is an example piece of code:
.Section 1
. Here is the text for Exercise 1.
. Just a paragraph.
.Section 2
[start=3]
. This would be 3.
It works as expected (first item in Section 2 is number 3) with asciidoctor, but with asciidoctor-epub3, the item numbering starts over with 1.
--