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;
21 lines (16 loc) • 501 B
JavaScript
module.exports = hardBreak
var patternInScope = require('../util/pattern-in-scope')
function hardBreak(node, _, context, safe) {
var index = -1
while (++index < context.unsafe.length) {
// If we can’t put eols in this construct (setext headings, tables), use a
// space instead.
if (
context.unsafe[index].character === '\n' &&
patternInScope(context.stack, context.unsafe[index])
) {
return /[ \t]/.test(safe.before) ? '' : ' '
}
}
return '\\\n'
}