Skip to content

Latest commit

 

History

History
76 lines (68 loc) · 1.13 KB

lists.adoc

File metadata and controls

76 lines (68 loc) · 1.13 KB

This is an example of a regular ordered list in Asciidoc with no specifiers.

Source code
. First level
. First level
.. Second level
... Third level
... Third level
.... Fourth level
.... Fourth level
.... Fourth level
... Third level
.. Second level
.. Second level
. First level

which renders as:

  1. First level

  2. First level

    1. Second level

      1. Third level

      2. Third level

        1. Fourth level

        2. Fourth level

        3. Fourth level

      3. Third level

    2. Second level

    3. Second level

  3. First level

This is an example of a regular ordered list in Asciidoc using specific symbols to change the list style:

Source code
[loweralpha]
. First level
. First level
[decimal]
.. Second level
[loweralpha]
... Third level
... Third level
[lowerroman]
.... Fourth level
.... Fourth level
.... Fourth level
... Third level
.. Second level
.. Second level
. First level

which renders as:

  1. First level

  2. First level

    1. Second level

      1. Third level

      2. Third level

        1. Fourth level

        2. Fourth level

        3. Fourth level

      3. Third level

    2. Second level

    3. Second level

  3. First level