packages feed

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

[quote, id="parking", role="startrek"]
Everybody remember where we parked.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( []
          , fromList [ ( "id" , "parking" ) , ( "role" , "startrek" ) ]
          )
          Nothing
          (QuoteBlock
             Nothing
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "Everybody remember where we parked.") ])
             ])
      ]
  }