Uses of Class
org.commonmark.renderer.text.TextContentRenderer.Builder
-
Packages that use TextContentRenderer.Builder Package Description org.commonmark.ext.gfm.strikethrough org.commonmark.ext.gfm.tables org.commonmark.ext.ins org.commonmark.renderer.text Plain text rendering with minimal markup (seeTextContentRenderer
) -
-
Uses of TextContentRenderer.Builder in org.commonmark.ext.gfm.strikethrough
Methods in org.commonmark.ext.gfm.strikethrough with parameters of type TextContentRenderer.Builder Modifier and Type Method Description void
StrikethroughExtension. extend(TextContentRenderer.Builder rendererBuilder)
-
Uses of TextContentRenderer.Builder in org.commonmark.ext.gfm.tables
Methods in org.commonmark.ext.gfm.tables with parameters of type TextContentRenderer.Builder Modifier and Type Method Description void
TablesExtension. extend(TextContentRenderer.Builder rendererBuilder)
-
Uses of TextContentRenderer.Builder in org.commonmark.ext.ins
Methods in org.commonmark.ext.ins with parameters of type TextContentRenderer.Builder Modifier and Type Method Description void
InsExtension. extend(TextContentRenderer.Builder rendererBuilder)
-
Uses of TextContentRenderer.Builder in org.commonmark.renderer.text
Methods in org.commonmark.renderer.text that return TextContentRenderer.Builder Modifier and Type Method Description static TextContentRenderer.Builder
TextContentRenderer. builder()
Create a new builder for configuring aTextContentRenderer
.TextContentRenderer.Builder
TextContentRenderer.Builder. extensions(java.lang.Iterable<? extends Extension> extensions)
TextContentRenderer.Builder
TextContentRenderer.Builder. nodeRendererFactory(TextContentNodeRendererFactory nodeRendererFactory)
Add a factory for instantiating a node renderer (done when rendering).TextContentRenderer.Builder
TextContentRenderer.Builder. stripNewlines(boolean stripNewlines)
Set the value of flag for stripping new lines.Methods in org.commonmark.renderer.text with parameters of type TextContentRenderer.Builder Modifier and Type Method Description void
TextContentRenderer.TextContentRendererExtension. extend(TextContentRenderer.Builder rendererBuilder)
Constructors in org.commonmark.renderer.text with parameters of type TextContentRenderer.Builder Constructor Description TextContentRenderer(TextContentRenderer.Builder builder)
-