All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
21 lines
501 B
JavaScript
21 lines
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'
|
||
}
|