packages feed

asciidoc-0.1: test/asciidoctor/section/numbered.test

:numbered:
== Introduction to Asciidoctor

== Quick Starts

=== Usage

==== Using the Command Line Interface

===== Processing Your Content

=== Syntax

== Terms and Concepts
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes =
            fromList [ ( "numbered" , "" ) , ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [] , fromList [ ( "id" , "_introduction_to_asciidoctor" ) ] )
          Nothing
          (Section
             (Level 1) [ Inline mempty (Str "Introduction to Asciidoctor") ] [])
      , Block
          Attr
          ( [] , fromList [ ( "id" , "_quick_starts" ) ] )
          Nothing
          (Section
             (Level 1)
             [ Inline mempty (Str "Quick Starts") ]
             [ Block
                 Attr
                 ( [] , fromList [ ( "id" , "_usage" ) ] )
                 Nothing
                 (Section
                    (Level 2)
                    [ Inline mempty (Str "Usage") ]
                    [ Block
                        Attr
                        ( []
                        , fromList [ ( "id" , "_using_the_command_line_interface" ) ]
                        )
                        Nothing
                        (Section
                           (Level 3)
                           [ Inline mempty (Str "Using the Command Line Interface") ]
                           [ Block
                               Attr
                               ( [] , fromList [ ( "id" , "_processing_your_content" ) ] )
                               Nothing
                               (Section
                                  (Level 4) [ Inline mempty (Str "Processing Your Content") ] [])
                           ])
                    ])
             , Block
                 Attr
                 ( [] , fromList [ ( "id" , "_syntax" ) ] )
                 Nothing
                 (Section (Level 2) [ Inline mempty (Str "Syntax") ] [])
             ])
      , Block
          Attr
          ( [] , fromList [ ( "id" , "_terms_and_concepts" ) ] )
          Nothing
          (Section (Level 1) [ Inline mempty (Str "Terms and Concepts") ] [])
      ]
  }