packages feed

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

.After landing the cloaked Klingon bird of prey in Golden Gate park:
[quote]
Everybody remember where we parked.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          (Just
             (BlockTitle
                [ Inline
                    mempty
                    (Str
                       "After landing the cloaked Klingon bird of prey in Golden Gate park:")
                ]))
          (QuoteBlock
             Nothing
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "Everybody remember where we parked.") ])
             ])
      ]
  }