mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 04:38:15 +08:00
21 lines
237 B
JavaScript
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 '<'
|
|
}
|