packages feed

asciidoc-0.1: test/asciidoctor/dlist/qanda.test

[qanda]
What is Asciidoctor?::
  An implementation of the AsciiDoc processor in Ruby.
What is the answer to the Ultimate Question?:: 42
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [ "qanda" ] , fromList [] )
          Nothing
          (DefinitionList
             [ ( [ Inline mempty (Str "What is Asciidoctor?") ]
               , [ Block
                     mempty
                     Nothing
                     (Paragraph
                        [ Inline
                            mempty (Str "An implementation of the AsciiDoc processor in Ruby.")
                        ])
                 ]
               )
             , ( [ Inline
                     mempty (Str "What is the answer to the Ultimate Question?")
                 ]
               , [ Block mempty Nothing (Paragraph [ Inline mempty (Str "42") ]) ]
               )
             ])
      ]
  }