Uses of Interface
org.commonmark.Extension
-
Packages that use Extension Package Description org.commonmark.ext.autolink org.commonmark.ext.footnotes org.commonmark.ext.front.matter org.commonmark.ext.gfm.strikethrough org.commonmark.ext.gfm.tables org.commonmark.ext.heading.anchor org.commonmark.ext.image.attributes org.commonmark.ext.ins org.commonmark.ext.task.list.items org.commonmark.parser Parsing input text to AST nodes (seeParser
)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 Extension in org.commonmark.ext.autolink
Classes in org.commonmark.ext.autolink that implement Extension Modifier and Type Class Description class
AutolinkExtension
Extension for automatically turning plain URLs and email addresses into links.Methods in org.commonmark.ext.autolink that return Extension Modifier and Type Method Description static Extension
AutolinkExtension. create()
-
Uses of Extension in org.commonmark.ext.footnotes
Classes in org.commonmark.ext.footnotes that implement Extension Modifier and Type Class Description class
FootnotesExtension
Extension for footnotes with syntax like GitHub Flavored Markdown:Methods in org.commonmark.ext.footnotes that return Extension Modifier and Type Method Description static Extension
FootnotesExtension. create()
The extension with the default configuration (no support for inline footnotes). -
Uses of Extension in org.commonmark.ext.front.matter
Classes in org.commonmark.ext.front.matter that implement Extension Modifier and Type Class Description class
YamlFrontMatterExtension
Extension for YAML-like metadata.Methods in org.commonmark.ext.front.matter that return Extension Modifier and Type Method Description static Extension
YamlFrontMatterExtension. create()
-
Uses of Extension in org.commonmark.ext.gfm.strikethrough
Classes in org.commonmark.ext.gfm.strikethrough that implement Extension Modifier and Type Class Description class
StrikethroughExtension
Extension for GFM strikethrough using~
or~~
(GitHub Flavored Markdown).Methods in org.commonmark.ext.gfm.strikethrough that return Extension Modifier and Type Method Description Extension
StrikethroughExtension.Builder. build()
static Extension
StrikethroughExtension. create()
-
Uses of Extension in org.commonmark.ext.gfm.tables
Classes in org.commonmark.ext.gfm.tables that implement Extension Modifier and Type Class Description class
TablesExtension
Extension for GFM tables using "|" pipes (GitHub Flavored Markdown).Methods in org.commonmark.ext.gfm.tables that return Extension Modifier and Type Method Description static Extension
TablesExtension. create()
-
Uses of Extension in org.commonmark.ext.heading.anchor
Classes in org.commonmark.ext.heading.anchor that implement Extension Modifier and Type Class Description class
HeadingAnchorExtension
Extension for adding auto generated IDs to headings.Methods in org.commonmark.ext.heading.anchor that return Extension Modifier and Type Method Description Extension
HeadingAnchorExtension.Builder. build()
static Extension
HeadingAnchorExtension. create()
-
Uses of Extension in org.commonmark.ext.image.attributes
Classes in org.commonmark.ext.image.attributes that implement Extension Modifier and Type Class Description class
ImageAttributesExtension
Extension for adding attributes to image nodes.Methods in org.commonmark.ext.image.attributes that return Extension Modifier and Type Method Description static Extension
ImageAttributesExtension. create()
-
Uses of Extension in org.commonmark.ext.ins
Classes in org.commonmark.ext.ins that implement Extension Modifier and Type Class Description class
InsExtension
Extension for ins using ++Methods in org.commonmark.ext.ins that return Extension Modifier and Type Method Description static Extension
InsExtension. create()
-
Uses of Extension in org.commonmark.ext.task.list.items
Classes in org.commonmark.ext.task.list.items that implement Extension Modifier and Type Class Description class
TaskListItemsExtension
Extension for adding task list items.Methods in org.commonmark.ext.task.list.items that return Extension Modifier and Type Method Description static Extension
TaskListItemsExtension. create()
-
Uses of Extension in org.commonmark.parser
Subinterfaces of Extension in org.commonmark.parser Modifier and Type Interface Description static interface
Parser.ParserExtension
Extension forParser
.Method parameters in org.commonmark.parser with type arguments of type Extension Modifier and Type Method Description Parser.Builder
Parser.Builder. extensions(java.lang.Iterable<? extends Extension> extensions)
-
Uses of Extension in org.commonmark.renderer.html
Subinterfaces of Extension in org.commonmark.renderer.html Modifier and Type Interface Description static interface
HtmlRenderer.HtmlRendererExtension
Extension forHtmlRenderer
.Method parameters in org.commonmark.renderer.html with type arguments of type Extension Modifier and Type Method Description HtmlRenderer.Builder
HtmlRenderer.Builder. extensions(java.lang.Iterable<? extends Extension> extensions)
-
Uses of Extension in org.commonmark.renderer.markdown
Subinterfaces of Extension in org.commonmark.renderer.markdown Modifier and Type Interface Description static interface
MarkdownRenderer.MarkdownRendererExtension
Extension forMarkdownRenderer
for rendering custom nodes.Method parameters in org.commonmark.renderer.markdown with type arguments of type Extension Modifier and Type Method Description MarkdownRenderer.Builder
MarkdownRenderer.Builder. extensions(java.lang.Iterable<? extends Extension> extensions)
-
Uses of Extension in org.commonmark.renderer.text
Subinterfaces of Extension in org.commonmark.renderer.text Modifier and Type Interface Description static interface
TextContentRenderer.TextContentRendererExtension
Extension forTextContentRenderer
.Method parameters in org.commonmark.renderer.text with type arguments of type Extension Modifier and Type Method Description TextContentRenderer.Builder
TextContentRenderer.Builder. extensions(java.lang.Iterable<? extends Extension> extensions)
-