HtmlBlockMarkdownExtensionSetup(MarkdownPipeline, IMarkdownRenderer) Method

Setups this extension for the specified renderer.

Definition

Namespace: Sandcastle.Core.Markdown.Extensions
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
public void Setup(
	MarkdownPipeline pipeline,
	IMarkdownRenderer renderer
)

Parameters

pipeline  MarkdownPipeline
The pipeline used to parse the document.
renderer  IMarkdownRenderer
The renderer.

Implements

IMarkdownExtension.Setup(MarkdownPipeline, IMarkdownRenderer)

Remarks

This captures the built pipeline when the pipeline setup for the renderer is called. The DocumentProcessed delegate only receives a MarkdownDocument, so we need a reference to the pipeline in order to parse inner HTML content using the same pipeline configuration.

See Also