packages feed

asciidoc-0.1: test/asciidoctor/dlist/qanda-with-id-and-role.test

[qanda, id=faq, role=galaxy]
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 [ ( "id" , "faq" ) , ( "role" , "galaxy" ) ]
          )
          Nothing
          (DefinitionList
             [ ( [ Inline
                     mempty (Str "What is the answer to the Ultimate Question?")
                 ]
               , [ Block mempty Nothing (Paragraph [ Inline mempty (Str "42") ]) ]
               )
             ])
      ]
  }