Represents a fenced code block in a markdown document: ``` or ~~~.
Namespace: Radzen.Documents.Markdown
Assembly: Radzen.Blazor.dll
public class FencedCodeBlock : Documents.Markdown.Leaf, Documents.Markdown.INode, Documents.Markdown.IBlockInlineContainerRepresents a fenced code block in a markdown document: ``` or ~~~.
public FencedCodeBlock()The delimiter used to start and end the code block.
public string Delimiter { get; }
| Type | Description |
|---|---|
| string | The delimiter used to start and end the code block. |
The info string of the code block. This is the first line of the code block and is used to specify the language of the code block.
public string Info { get; }
| Type | Description |
|---|---|
| string | The info string of the code block. This is the first line of the code block and is used to specify the language of the code block. |
public override void Accept(Documents.Markdown.INodeVisitor visitor)
| Type | Name | Description |
|---|---|---|
| Documents.Markdown.INodeVisitor | visitor |