asciidoc-0.1: test/asciidoctor/inline_footnote/xref.test
A bold statement.footnoteref:[disclaimer,Opinions are my own.]
Another outrageous statement.footnoteref:[disclaimer]
>>>
Document
{ docMeta =
Meta
{ docTitle = []
, docTitleAttributes = Nothing
, docAuthors = []
, docRevision = Nothing
, docAttributes = fromList [ ( "sectids" , "" ) ]
}
, docBlocks =
[ Block
mempty
Nothing
(Paragraph
[ Inline mempty (Str "A bold statement.")
, Inline
mempty
(Footnote
(Just (FootnoteId "disclaimer"))
[ Inline mempty (Str "Opinions are my own.") ])
, Inline mempty (Str "\nAnother outrageous statement.")
, Inline mempty (Footnote (Just (FootnoteId "disclaimer")) [])
])
]
}