asciidoc-0.1: test/asciidoctor/verse/basic-with-attribution-and-citetitle.test
[verse, Carl Sandburg, two lines from the poem Fog]
The fog comes
on little cat feet.
>>>
Document
{ docMeta =
Meta
{ docTitle = []
, docTitleAttributes = Nothing
, docAuthors = []
, docRevision = Nothing
, docAttributes = fromList [ ( "sectids" , "" ) ]
}
, docBlocks =
[ Block
mempty
Nothing
(Verse
(Just (Attribution "Carl Sandburg, two lines from the poem Fog"))
[ Block
mempty
Nothing
(Paragraph
[ Inline mempty (Str "The fog comes")
, Inline mempty HardBreak
, Inline mempty (Str "on little cat feet.")
])
])
]
}