API Reference
Class
MarkdownSyntaxBlockHtmlRenderExtension
Named HTML render extension that can override emitted HTML for blocks with a specific final syntax kind.
Inheritance
- Object
- MarkdownSyntaxBlockHtmlRenderExtension
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
Methods
public static MarkdownSyntaxBlockHtmlRenderExtension CreateContextual(String name, MarkdownSyntaxKind kind, MarkdownSyntaxBlockHtmlContextualRenderer renderHtml, String customKind = null) #Returns:
MarkdownSyntaxBlockHtmlRenderExtensionCreates a context-aware HTML block render extension registration matched by syntax kind.
Parameters
- name System.String
- kind OfficeIMO.Markdown.MarkdownSyntaxKind
- renderHtml OfficeIMO.Markdown.MarkdownSyntaxBlockHtmlContextualRenderer
- customKind System.String = null
public Boolean Matches(MarkdownSyntaxNode syntaxNode) #Returns:
BooleanReturns true when the extension can render the supplied syntax node.
Parameters
- syntaxNode OfficeIMO.Markdown.MarkdownSyntaxNode
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public String Name { get; } #Stable extension name used for inspection or de-duplication.
public MarkdownSyntaxKind Kind { get; } #The final syntax kind this extension handles.
public String CustomKind { get; } #Optional custom extension kind to require when matching CustomKind.
public MarkdownSyntaxBlockHtmlContextualRenderer RenderHtml { get; } #Context-aware HTML rendering callback.