packages feed

asciidoc-0.1: test/asciidoctor/quote/with-attribution.test

[quote, Albert Einstein]
A person who never made a mistake never tried anything new.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (QuoteBlock
             (Just (Attribution "Albert Einstein"))
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline
                        mempty
                        (Str "A person who never made a mistake never tried anything new.")
                    ])
             ])
      ]
  }