10 lines
148 B
JavaScript
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))
|
|
}
|