paragraph.js 139 B

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