Urara-Blog/node_modules/.pnpm-store/v3/files/2b/afd78f6dbc510d94ff2e4ae496c9a2eedd769b4b5f3c027ed111613dbb1120d91f4c76f16806bd854c4298af15e7cff6176877a2dbe9a96868a3d52e89d4ec
2022-08-14 01:14:53 +08:00

34 lines
763 B
Text

/**
* @typedef {import('mdast').Heading} Heading
* @typedef {import('../types.js').Context} Context
*/
import {visit, EXIT} from 'unist-util-visit'
import {toString} from 'mdast-util-to-string'
/**
* @param {Heading} node
* @param {Context} context
* @returns {boolean}
*/
export function formatHeadingAsSetext(node, context) {
let literalWithBreak = false
// Look for literals with a line break.
// Note that this also
visit(node, (node) => {
if (
('value' in node && /\r?\n|\r/.test(node.value)) ||
node.type === 'break'
) {
literalWithBreak = true
return EXIT
}
})
return Boolean(
(!node.depth || node.depth < 3) &&
toString(node) &&
(context.options.setext || literalWithBreak)
)
}