Represents a visitor for Markdown AST nodes.
Namespace: Radzen.Blazor.Markdown
Assembly: Radzen.Blazor.dll
public interface INodeVisitorVisits a block quote node.
public abstract void VisitBlockQuote(Markdown.BlockQuote blockQuote)
| Type | Name | Description |
|---|---|---|
| Markdown.BlockQuote | blockQuote |
Visits a code node.
public abstract void VisitCode(Markdown.Code code)
| Type | Name | Description |
|---|---|---|
| Markdown.Code | code |
Visits a document node.
public abstract void VisitDocument(Markdown.Document document)
| Type | Name | Description |
|---|---|---|
| Markdown.Document | document |
Visits an emphasis node.
public abstract void VisitEmphasis(Markdown.Emphasis emphasis)
| Type | Name | Description |
|---|---|---|
| Markdown.Emphasis | emphasis |
Visits a fenced code block node.
public abstract void VisitFencedCodeBlock(Markdown.FencedCodeBlock fencedCodeBlock)
| Type | Name | Description |
|---|---|---|
| Markdown.FencedCodeBlock | fencedCodeBlock |
Visits a heading node.
public abstract void VisitHeading(Markdown.Heading heading)
| Type | Name | Description |
|---|---|---|
| Markdown.Heading | heading |
Visits an HTML block node.
public abstract void VisitHtmlBlock(Markdown.HtmlBlock htmlBlock)
| Type | Name | Description |
|---|---|---|
| Markdown.HtmlBlock | htmlBlock |
Visits an HTML inline node.
public abstract void VisitHtmlInline(Markdown.HtmlInline html)
| Type | Name | Description |
|---|---|---|
| Markdown.HtmlInline | html |
Visits an image node.
public abstract void VisitImage(Markdown.Image image)
| Type | Name | Description |
|---|---|---|
| Markdown.Image | image |
Visits an indented code block node.
public abstract void VisitIndentedCodeBlock(Markdown.IndentedCodeBlock codeBlock)
| Type | Name | Description |
|---|---|---|
| Markdown.IndentedCodeBlock | codeBlock |
Visits a line break node.
public abstract void VisitLineBreak(Markdown.LineBreak lineBreak)
| Type | Name | Description |
|---|---|---|
| Markdown.LineBreak | lineBreak |
Visits a link node.
public abstract void VisitLink(Markdown.Link link)
| Type | Name | Description |
|---|---|---|
| Markdown.Link | link |
Visits a list item node.
public abstract void VisitListItem(Markdown.ListItem listItem)
| Type | Name | Description |
|---|---|---|
| Markdown.ListItem | listItem |
Visits an ordered list node.
public abstract void VisitOrderedList(Markdown.OrderedList orderedList)
| Type | Name | Description |
|---|---|---|
| Markdown.OrderedList | orderedList |
Visits a paragraph node.
public abstract void VisitParagraph(Markdown.Paragraph paragraph)
| Type | Name | Description |
|---|---|---|
| Markdown.Paragraph | paragraph |
Visits a soft line break node.
public abstract void VisitSoftLineBreak(Markdown.SoftLineBreak softLineBreak)
| Type | Name | Description |
|---|---|---|
| Markdown.SoftLineBreak | softLineBreak |
Visits a strong node.
public abstract void VisitStrong(Markdown.Strong strong)
| Type | Name | Description |
|---|---|---|
| Markdown.Strong | strong |
Visits a table node.
public abstract void VisitTable(Markdown.Table table)
| Type | Name | Description |
|---|---|---|
| Markdown.Table | table |
Visits a table cell node.
public abstract void VisitTableCell(Markdown.TableCell cell)
| Type | Name | Description |
|---|---|---|
| Markdown.TableCell | cell |
Visits a table header row node.
public abstract void VisitTableHeaderRow(Markdown.TableHeaderRow header)
| Type | Name | Description |
|---|---|---|
| Markdown.TableHeaderRow | header |
Visits a table row node.
public abstract void VisitTableRow(Markdown.TableRow row)
| Type | Name | Description |
|---|---|---|
| Markdown.TableRow | row |
Visits a text node.
public abstract void VisitText(Markdown.Text text)
| Type | Name | Description |
|---|---|---|
| Markdown.Text | text |
Visits a thematic break node.
public abstract void VisitThematicBreak(Markdown.ThematicBreak thematicBreak)
| Type | Name | Description |
|---|---|---|
| Markdown.ThematicBreak | thematicBreak |
Visits an unordered list node.
public abstract void VisitUnorderedList(Markdown.UnorderedList unorderedList)
| Type | Name | Description |
|---|---|---|
| Markdown.UnorderedList | unorderedList |