We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23607b commit 498da43Copy full SHA for 498da43
packages/markdown-html/src/rules.js
@@ -51,7 +51,7 @@ const LIST_RULE = {
51
return {
52
'$class': `${NS_PREFIX_CommonMarkModel}List`,
53
type: 'bullet',
54
- tight: el.getAttribute('tight'),
+ tight: el.getAttribute('tight') ? el.getAttribute('tight') : true,
55
nodes: next(el.childNodes)
56
};
57
}
@@ -61,7 +61,7 @@ const LIST_RULE = {
61
type: 'ordered',
62
delimiter: el.getAttribute('delimiter'),
63
start: el.getAttribute('start'),
64
65
66
67
0 commit comments