Class FencedCodeBlock
Represents a fenced code block in a markdown document: ```
or ~~~
.
Inherited Members
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
Syntax
public class FencedCodeBlock : Leaf, INode, IBlockInlineContainer
Properties
Delimiter
The delimiter used to start and end the code block.
Declaration
public string Delimiter { get; }
Property Value
Type | Description |
---|---|
System.String |
Info
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.
Declaration
public string Info { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Accept(INodeVisitor)
Accepts a visitor.
Declaration
public override void Accept(INodeVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
INodeVisitor | visitor |