mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 04:31:52 +08:00
15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
|
/**
|
||
|
* Turn an mdast `blockquote` node into hast.
|
||
|
*
|
||
|
* @param {State} state
|
||
|
* Info passed around.
|
||
|
* @param {Blockquote} node
|
||
|
* mdast node.
|
||
|
* @returns {Element}
|
||
|
* hast node.
|
||
|
*/
|
||
|
export function blockquote(state: State, node: Blockquote): Element;
|
||
|
export type Element = import("hast").Element;
|
||
|
export type Blockquote = import("mdast").Blockquote;
|
||
|
export type State = import("../state.js").State;
|