packages feed

asciidoc-0.1: test/asciidoctor/verse/basic.test

[verse]
The fog comes
on little cat feet.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (Verse
             Nothing
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "The fog comes")
                    , Inline mempty HardBreak
                    , Inline mempty (Str "on little cat feet.")
                    ])
             ])
      ]
  }