wekan/packages/markdown/marked/test/specs/commonmark/getSpecs.js
Lauri Ojansivu 73e265d8fd Include to Wekan packages directory contents, so that meteor command would build all directly.
This also simplifies build scripts.

Thanks to xet7 !
2019-04-20 15:18:33 +03:00

24 lines
841 B
JavaScript

const fetch = require('node-fetch');
const marked = require('../../../');
const htmlDiffer = require('../../helpers/html-differ.js');
const fs = require('fs');
fetch('https://raw.githubusercontent.com/commonmark/commonmark.js/master/package.json')
.then(res => res.json())
.then(pkg => pkg.version.replace(/^(\d+\.\d+).*$/, '$1'))
.then(version =>
fetch(`https://spec.commonmark.org/${version}/spec.json`)
.then(res => res.json())
.then(specs => {
specs.forEach(spec => {
const html = marked(spec.markdown, {headerIds: false});
if (!htmlDiffer.isEqual(html, spec.html)) {
spec.shouldFail = true;
}
});
fs.writeFileSync(`commonmark.${version}.json`, JSON.stringify(specs, null, 2) + '\n');
})
)
.catch((err) => {
console.error(err);
});