packages feed

asciidoc-0.1: test/asciidoctor/open/abstract-with-title.test

[abstract]
.Abstract title is abstract
--
This is an abstract quote block.
Who knows what it really means?
--
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [ "abstract" ] , fromList [] )
          (Just
             (BlockTitle [ Inline mempty (Str "Abstract title is abstract") ]))
          (OpenBlock
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline
                        mempty
                        (Str
                           "This is an abstract quote block.\nWho knows what it really means?")
                    ])
             ])
      ]
  }