Files
30-seconds-of-code/node_modules/mdast-util-to-hast/lib/handlers/html.js
2019-08-20 15:52:05 +02:00

11 lines
228 B
JavaScript

'use strict'
module.exports = html
var u = require('unist-builder')
// Return either a `raw` node, in dangerous mode, or nothing.
function html(h, node) {
return h.dangerous ? h.augment(node, u('raw', node.value)) : null
}