@readme/markdown 6.61.1 → 6.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +2 -0
- package/dist/main.node.js +2 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -26758,6 +26758,8 @@ var createSchema = function createSchema() {
|
|
|
26758
26758
|
schema.tagNames.push('figcaption');
|
|
26759
26759
|
schema.tagNames.push('input'); // allow GitHub-style todo lists
|
|
26760
26760
|
schema.ancestors.input = ['li'];
|
|
26761
|
+
schema.tagNames.push('colgroup'); // wat
|
|
26762
|
+
schema.tagNames.push('col');
|
|
26761
26763
|
return schema;
|
|
26762
26764
|
};
|
|
26763
26765
|
module.exports = createSchema;
|
package/dist/main.node.js
CHANGED
|
@@ -11525,6 +11525,8 @@ var createSchema = function createSchema() {
|
|
|
11525
11525
|
schema.tagNames.push('figcaption');
|
|
11526
11526
|
schema.tagNames.push('input'); // allow GitHub-style todo lists
|
|
11527
11527
|
schema.ancestors.input = ['li'];
|
|
11528
|
+
schema.tagNames.push('colgroup'); // wat
|
|
11529
|
+
schema.tagNames.push('col');
|
|
11528
11530
|
return schema;
|
|
11529
11531
|
};
|
|
11530
11532
|
module.exports = createSchema;
|
package/package.json
CHANGED