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

10 lines
148 B
JavaScript

'use strict'
module.exports = heading
var all = require('../all')
function heading(h, node) {
return h(node, 'h' + node.depth, all(h, node))
}