knowledgebase_law/node_modules/mdast-util-to-markdown/lib/handle/html.js
2025-04-11 11:47:09 -04:00

21 lines
237 B
JavaScript

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