atx_heading method
atx_heading
Creates AtxHeadingSyntaxNode with text content.
Returns
The AtxHeadingSyntax.
def atx_heading(self, text):
...
Parameter | Type | Description |
---|---|---|
text | str | The heading text content. |
atx_heading
Creates AtxHeadingSyntaxNode with text content and heading level.
Returns
The AtxHeadingSyntax.
def atx_heading(self, text, level):
...
Parameter | Type | Description |
---|---|---|
text | str | The heading text content. |
level | int | The heading level value. |
atx_heading
Creates AtxHeadingSyntaxNode
.
Returns
The AtxHeadingSyntax.
def atx_heading(self, opening, closing):
...
Parameter | Type | Description |
---|---|---|
opening | MarkdownSyntaxToken | The opening token. |
closing | MarkdownSyntaxToken | The closing token. |
See Also
- module
aspose.html.toolkit.markdown.syntax
- class
AtxHeadingSyntaxNode
- class
MarkdownSyntaxFactory