UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

10 lines (7 loc) 233 B
module.exports = formatHeadingAsSetext var toString = require('mdast-util-to-string') function formatHeadingAsSetext(node, context) { return ( context.options.setext && (!node.depth || node.depth < 3) && toString(node) ) }