heading.js 148 B

123456789
  1. 'use strict'
  2. module.exports = heading
  3. var all = require('../all')
  4. function heading(h, node) {
  5. return h(node, 'h' + node.depth, all(h, node))
  6. }