kjelsrud.dev/node_modules/mdast-util-to-markdown/lib/handle/html.js
2023-07-19 21:31:30 +02:00

20 lines
246 B
JavaScript

/**
* @typedef {import('mdast').HTML} HTML
*/
html.peek = htmlPeek
/**
* @param {HTML} node
* @returns {string}
*/
export function html(node) {
return node.value || ''
}
/**
* @returns {string}
*/
function htmlPeek() {
return '<'
}