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

21 lines
246 B
JavaScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
* @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 '<'
}