knowledgebase_law/node_modules/mdast-util-to-markdown/lib/handle/html.js

21 lines
237 B
JavaScript
Raw Normal View History

2025-04-11 23:47:09 +08:00
/**
* @import {Html} from 'mdast'
*/
html.peek = htmlPeek
/**
* @param {Html} node
* @returns {string}
*/
export function html(node) {
return node.value || ''
}
/**
* @returns {string}
*/
function htmlPeek() {
return '<'
}