MarkdownPostProcessorContext
Interface: MarkdownPostProcessorContext
Section titled “Interface: MarkdownPostProcessorContext”Defined in: markdown.ts:69
Properties
Section titled “Properties”docId:
string
Defined in: markdown.ts:71
frontmatter
Section titled “frontmatter”frontmatter:
any
Defined in: markdown.ts:80
sourcePath
Section titled “sourcePath”sourcePath:
string
Defined in: markdown.ts:78
The path to the associated file. Any links are assumed to be relative to
the sourcePath.
Methods
Section titled “Methods”addChild()
Section titled “addChild()”addChild(
child):void
Defined in: markdown.ts:92
Adds a child component that will have its lifecycle managed by the renderer.
Use this to add a dependent child to the renderer such that if the containerEl of the child is ever removed, the component’s unload will be called.
Parameters
Section titled “Parameters”Returns
Section titled “Returns”void
getSectionInfo()
Section titled “getSectionInfo()”getSectionInfo(
el):MarkdownSectionInformation|null
Defined in: markdown.ts:101
Gets the section information of this element at this point in time. Only call this function right before you need this information to get the most up-to-date version. This function may also return null in many circumstances; if you use it, you must be prepared to deal with nulls.
Parameters
Section titled “Parameters”HTMLElement
Returns
Section titled “Returns”MarkdownSectionInformation | null