Represents a fenced code block in a markdown document: ``` or ~~~.
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public class FencedCodeBlock : Markdown.Leaf, Markdown.INode, 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(Markdown.INodeVisitor visitor)
| Type | Name | Description |
|---|---|---|
| Markdown.INodeVisitor | visitor |