astro-ghostcms/.pnpm-store/v3/files/87/12c79934f95a069a0e4bbc4cdc3...

21 lines
246 B
Plaintext

/**
* @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 '<'
}