Package org.asciidoctor.jruby.ast.impl
Class CatalogImpl
java.lang.Object
org.asciidoctor.jruby.ast.impl.CatalogImpl
- All Implemented Interfaces:
Catalog
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
CatalogImpl
-
-
Method Details
-
getFootnotes
Description copied from interface:CatalogNote that footnotes are only available after `Document.getContent()` has been called. A converter uses cataloged footnotes to render them, presumably, at the bottom of a document.- Specified by:
getFootnotesin interfaceCatalog- Returns:
- footnotes occurring in document.
-
getRefs
Description copied from interface:CatalogRefs is a map of asciidoctor ids to asciidoctor document elements. For example, by default, each section is automatically assigned an id. In this case the id would map to aSectionelement. Ids can also be explicitly assigned by document authors to any document element. See https://asciidoctor.org/docs/user-manual/#id A converter might use cataloged refs to lookup ids to support rendering inline anchors.
-