HtmlForgeX

API Reference

Interface

IMarkdownProvider

Namespace HtmlForgeX.Markdown
Assembly HtmlForgeX
Modifiers abstract

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

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Returned or exposed by

Accepted by parameters

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.