HtmlForgeX

API Reference

Interface

IMarkdownProvider

Namespace HtmlForgeX.Markdown
Assembly HtmlForgeX
Modifiers abstract

Abstraction for Markdown rendering. Allows swapping the renderer without changing call sites.

Methods

public abstract List<Element> Render(String markdown, MarkdownOptions options, Document document) #
Returns: List<Element>

Renders Markdown text into HtmlForgeX elements.

Parameters

markdown System.String requiredposition: 0
Markdown content.
options HtmlForgeX.Markdown.MarkdownOptions requiredposition: 1
Rendering options.
document HtmlForgeX.Document requiredposition: 2
Owning document (when available) for registration context.

Returns

List of child elements representing the rendered content.