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 8d15bac commit 85438e3Copy full SHA for 85438e3
3 files changed
tools/lint-md/lint-md.mjs
@@ -11296,7 +11296,14 @@ const gfmTableFromMarkdown = {
11296
};
11297
function enterTable(token) {
11298
const align = token._align;
11299
- this.enter({type: 'table', align, children: []}, token);
+ this.enter(
11300
+ {
11301
+ type: 'table',
11302
+ align: align.map((d) => (d === 'none' ? null : d)),
11303
+ children: []
11304
+ },
11305
+ token
11306
+ );
11307
this.setData('inTable', true);
11308
}
11309
function exitTable(token) {
tools/lint-md/package-lock.json
tools/lint-md/package.json
@@ -16,7 +16,7 @@
16
"devDependencies": {
17
"@rollup/plugin-commonjs": "^21.0.1",
18
"@rollup/plugin-node-resolve": "^13.1.1",
19
- "rollup": "^2.61.1",
+ "rollup": "^2.62.0",
20
"rollup-plugin-cleanup": "^3.2.1"
21
22
0 commit comments