BaseHtmlNodeRenderer
open class BaseHtmlNodeRenderer(context: Context) : TagNodeRenderer<HtmlTagBuilder> , ListItemVariantVisitor<HtmlTagBuilder.() -> Unit>
A renderer for vanilla Markdown (com.quarkdown.core.flavor.base.BaseMarkdownFlavor) nodes that exports their content into valid HTML code.
Parameters
context
additional information produced by the earlier stages of the pipeline
Inheritors
Properties
Functions
Link copied to clipboard
Creates a multi-tag builder.
Link copied to clipboard
Builds a tag. Example:
A quick way to build a simple tag. Example:
Link copied to clipboard
Factory method that creates a new builder.
Link copied to clipboard
Link copied to clipboard
A quick way to create a simple tag builder. Example:
fun <B : TagBuilder> TagNodeRenderer<B>.tagBuilder(name: String, pretty: Boolean = this.pretty, init: B.() -> Unit = {}): B
Creates a generic builder.
Link copied to clipboard