packages feed

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

:numbered:
:sectnumlevels: 1
== Introduction to Asciidoctor

== Quick Starts

=== Usage

==== Using the Command Line Interface

=== Syntax

== Terms and Concepts
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes =
            fromList
              [ ( "numbered" , "" )
              , ( "sectids" , "" )
              , ( "sectnumlevels" , "1" )
              ]
        }
  , 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" , "_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") ] [])
      ]
  }