30 lines
704 B
JavaScript
30 lines
704 B
JavaScript
![]() |
/**
|
||
|
* @typedef {import('hast').Element} Element
|
||
|
* @typedef {import('mdast').HTML} Html
|
||
|
* @typedef {import('../state.js').State} State
|
||
|
* @typedef {import('../../index.js').Raw} Raw
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Turn an mdast `html` node into hast (`raw` node in dangerous mode, otherwise
|
||
|
* nothing).
|
||
|
*
|
||
|
* @param {State} state
|
||
|
* Info passed around.
|
||
|
* @param {Html} node
|
||
|
* mdast node.
|
||
|
* @returns {Raw | Element | null}
|
||
|
* hast node.
|
||
|
*/
|
||
|
export function html(state, node) {
|
||
|
if (state.dangerous) {
|
||
|
/** @type {Raw} */
|
||
|
const result = {type: 'raw', value: node.value}
|
||
|
state.patch(node, result)
|
||
|
return state.applyData(node, result)
|
||
|
}
|
||
|
|
||
|
// To do: next major: return `undefined`.
|
||
|
return null
|
||
|
}
|