markdown
Shared Markdown constants used across packages.
FRONT_MATTER_DELIMITER
const FRONT_MATTER_DELIMITER: "---";
Defined in: markdown.ts:20
Frontmatter delimiter for YAML frontmatter blocks.
MARKDOWN_CODE_INDENTATION
const MARKDOWN_CODE_INDENTATION: " ";
Defined in: markdown.ts:30
Standard indentation for code blocks (2 spaces).
MARKDOWN_CODE_SNIPPET
const MARKDOWN_CODE_SNIPPET: "``";
Defined in: markdown.ts:25
Code snippet delimiter for fenced code blocks.
MARKDOWN_EOL
const MARKDOWN_EOL: "\n";
Defined in: markdown.ts:10
End of line character for Markdown.
MARKDOWN_EOP
const MARKDOWN_EOP: string;
Defined in: markdown.ts:15
End of paragraph (double newline) for Markdown.