Uses of Interface
org.commonmark.node.Visitor
-
Packages that use Visitor Package Description org.commonmark.ext.autolink.internal org.commonmark.ext.footnotes.internal org.commonmark.ext.front.matter org.commonmark.ext.task.list.items.internal org.commonmark.node AST node types (seeNode) and visitors (seeAbstractVisitor)org.commonmark.renderer.html HTML rendering (seeHtmlRenderer)org.commonmark.renderer.markdown Markdown rendering (seeMarkdownRenderer)org.commonmark.renderer.text Plain text rendering with minimal markup (seeTextContentRenderer) -
-
Uses of Visitor in org.commonmark.ext.autolink.internal
Classes in org.commonmark.ext.autolink.internal that implement Visitor Modifier and Type Class Description private classAutolinkPostProcessor.AutolinkVisitor -
Uses of Visitor in org.commonmark.ext.footnotes.internal
Classes in org.commonmark.ext.footnotes.internal that implement Visitor Modifier and Type Class Description private static classFootnoteHtmlNodeRenderer.DefinitionVisitorprivate static classFootnoteHtmlNodeRenderer.ShallowReferenceVisitorVisit footnote references/inline footnotes inside the parent (but not the parent itself). -
Uses of Visitor in org.commonmark.ext.front.matter
Classes in org.commonmark.ext.front.matter that implement Visitor Modifier and Type Class Description classYamlFrontMatterVisitor -
Uses of Visitor in org.commonmark.ext.task.list.items.internal
Classes in org.commonmark.ext.task.list.items.internal that implement Visitor Modifier and Type Class Description private static classTaskListItemPostProcessor.TaskListItemVisitor -
Uses of Visitor in org.commonmark.node
Classes in org.commonmark.node that implement Visitor Modifier and Type Class Description classAbstractVisitorAbstract visitor that visits all children by default.Methods in org.commonmark.node with parameters of type Visitor Modifier and Type Method Description voidBlockQuote. accept(Visitor visitor)voidBulletList. accept(Visitor visitor)voidCode. accept(Visitor visitor)voidCustomBlock. accept(Visitor visitor)voidCustomNode. accept(Visitor visitor)voidDocument. accept(Visitor visitor)voidEmphasis. accept(Visitor visitor)voidFencedCodeBlock. accept(Visitor visitor)voidHardLineBreak. accept(Visitor visitor)voidHeading. accept(Visitor visitor)voidHtmlBlock. accept(Visitor visitor)voidHtmlInline. accept(Visitor visitor)voidImage. accept(Visitor visitor)voidIndentedCodeBlock. accept(Visitor visitor)voidLink. accept(Visitor visitor)voidLinkReferenceDefinition. accept(Visitor visitor)voidListItem. accept(Visitor visitor)abstract voidNode. accept(Visitor visitor)voidOrderedList. accept(Visitor visitor)voidParagraph. accept(Visitor visitor)voidSoftLineBreak. accept(Visitor visitor)voidStrongEmphasis. accept(Visitor visitor)voidText. accept(Visitor visitor)voidThematicBreak. accept(Visitor visitor) -
Uses of Visitor in org.commonmark.renderer.html
Classes in org.commonmark.renderer.html that implement Visitor Modifier and Type Class Description classCoreHtmlNodeRendererThe node renderer that renders all the core nodes (comes last in the order of node renderers).private static classCoreHtmlNodeRenderer.AltTextVisitor -
Uses of Visitor in org.commonmark.renderer.markdown
Classes in org.commonmark.renderer.markdown that implement Visitor Modifier and Type Class Description classCoreMarkdownNodeRendererThe node renderer that renders all the core nodes (comes last in the order of node renderers).private static classCoreMarkdownNodeRenderer.LineBreakVisitorVisits nodes to check if there are any soft or hard line breaks. -
Uses of Visitor in org.commonmark.renderer.text
Classes in org.commonmark.renderer.text that implement Visitor Modifier and Type Class Description classCoreTextContentNodeRendererThe node renderer that renders all the core nodes (comes last in the order of node renderers).
-