Code Block RendererBlock Mapping Property
Gets a map of custom block mapping to render as custom blocks instead of code blocks.
For example defining {"mermaid", "pre"} will render a block with info `mermaid` as a `pre` block but
without the code HTML element.
Definition
Namespace: Sandcastle.Core.Markdown.Renderers
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
C#
public Dictionary<string, string> BlockMapping { get; }VB
Public ReadOnly Property BlockMapping As Dictionary(Of String, String)
GetC++
public:
property Dictionary<String^, String^>^ BlockMapping {
Dictionary<String^, String^>^ get ();
}F#
member BlockMapping : Dictionary<string, string> with get