Update markdownlint demo code with latest changes.

This commit is contained in:
David Anson 2020-09-13 21:15:11 -07:00
parent e9d63a6284
commit e1134f0db9
2 changed files with 746 additions and 1518 deletions

View file

@ -5,3 +5,11 @@ module.exports = window.markdownit;
if (!module.exports) { if (!module.exports) {
console.error("markdown-it must be loaded before markdownlint."); console.error("markdown-it must be loaded before markdownlint.");
} }
// Stub missing implementation of util.promisify (unused here)
var util = require("util");
if (!util.promisify) {
util.promisify = function promisify(fn) {
return fn;
};
}

File diff suppressed because it is too large Load diff