Package org.commonmark.ext.footnotes
Class FootnoteDefinition
java.lang.Object
org.commonmark.node.Node
org.commonmark.node.Block
org.commonmark.node.CustomBlock
org.commonmark.ext.footnotes.FootnoteDefinition
A footnote definition, e.g.:
[^foo]: This is the footnote text
The label
is the text in brackets after ^
, so foo
in the example. The contents
of the footnote are child nodes of the definition, a Paragraph
in the example.
Footnote definitions are parsed even if there's no corresponding FootnoteReference
.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.commonmark.node.CustomBlock
accept
Methods inherited from class org.commonmark.node.Node
addSourceSpan, appendChild, getFirstChild, getLastChild, getNext, getPrevious, getSourceSpans, insertAfter, insertBefore, prependChild, setSourceSpans, toString, toStringAttributes, unlink
-
Field Details
-
label
-
-
Constructor Details
-
FootnoteDefinition
-
-
Method Details
-
getLabel
-