(node)
| 242 | } |
| 243 | |
| 244 | function forceNextEmptyLine(node) { |
| 245 | return ( |
| 246 | isFrontMatter(node) || |
| 247 | (node.next && |
| 248 | node.sourceSpan.end && |
| 249 | node.sourceSpan.end.line + 1 < node.next.sourceSpan.start.line) |
| 250 | ); |
| 251 | } |
| 252 | |
| 253 | /** firstChild leadingSpaces and lastChild trailingSpaces */ |
| 254 | function forceBreakContent(node) { |
no test coverage detected
searching dependent graphs…