Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrap list continuation inside a block #92

Open
ggenzone opened this issue Jul 29, 2021 · 0 comments
Open

Wrap list continuation inside a block #92

ggenzone opened this issue Jul 29, 2021 · 0 comments

Comments

@ggenzone
Copy link

I found a case that seems like a bug in Asciidoc's handling of continuation of lists, however it could be avoided if the continuation of list is created within a block.

https://docs.asciidoctor.org/asciidoc/latest/lists/continuation/#list-continuation

Markdown Source

# Title 

1.  Example


    -  ListItem1
    -  ListItem2

    ```
    tar -xvf 1.0-Linux32.tar.gz
    ```
    
    
    Paragraph


    ```
    ls
    ```

Asciidoc Output

= Title

. Example
 ** ListItem1
 ** ListItem2

+
----
tar -xvf 1.0-Linux32.tar.gz
----
+
Paragraph
+
----
ls
----

HTML Result using adoc file
screenshot-www google com-2021 07 29-09_57_13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant