asciidoc-0.1: test/asciidoctor/inline_anchor/xref-with-text.test
The section <<page-break, Page break>> describes how to add a page break.
>>>
Document
{ docMeta =
Meta
{ docTitle = []
, docTitleAttributes = Nothing
, docAuthors = []
, docRevision = Nothing
, docAttributes = fromList [ ( "sectids" , "" ) ]
}
, docBlocks =
[ Block
mempty
Nothing
(Paragraph
[ Inline mempty (Str "The section ")
, Inline
mempty
(CrossReference
"page-break" (Just [ Inline mempty (Str "Page break") ]))
, Inline mempty (Str " describes how to add a page break.")
])
]
}