fix(md): ensure list offset when rendering (#19241)
This commit is contained in:
Родитель
6d82460a02
Коммит
291ad6e618
|
@ -283,8 +283,8 @@ function render(nodes, options) {
|
|||
*/
|
||||
function innerRenderMdNode(indent, node, lastNode, result, options) {
|
||||
const newLine = () => {
|
||||
if (result.length && result[result.length - 1] !== '')
|
||||
result.push('');
|
||||
if (result.length && (result[result.length - 1] || '').trim() !== '')
|
||||
result.push(indent);
|
||||
};
|
||||
|
||||
if (node.type.startsWith('h')) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче