CodeBlockMarkdownInformation
Information about a code block in a markdown file.
Import:
import type { CodeBlockMarkdownInformation } from 'obsidian-dev-utils/obsidian/code-block-markdown-information';Signature:
export interface CodeBlockMarkdownInformationProperties
| Property | Type | Description |
|---|---|---|
| args | string[] | Arguments of the code block. |
| endDelimiter | string | An end delimiter of the code block. |
| language | string | A language of the code block. |
| linePrefix | string | A line prefix of each line of the code block. |
| noteContent | string | A content of the note. |
| positionInNote | Pos | A position of the code block in the note. |
| rawArgsStr | string | Raw arguments string of the code block. |
| sectionInfo | MarkdownSectionInformation | A section information of the code block. |
| startDelimiter | string | A start delimiter of the code block. |
Links to this page: