packages feed

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

[quote, Captain James T. Kirk, Star Trek IV: The Voyage Home]
Everybody remember where we parked.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (QuoteBlock
             (Just
                (Attribution
                   "Captain James T. Kirk, Star Trek IV: The Voyage Home"))
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "Everybody remember where we parked.") ])
             ])
      ]
  }