Add interactive demo page to show how markdownlint handles user content.

This commit is contained in:
David Anson 2015-05-03 21:50:25 -07:00
parent 43f28b90c1
commit dce6024e16
7 changed files with 178 additions and 1 deletions

8
demo/require-stub.js Normal file
View file

@ -0,0 +1,8 @@
"use strict";
// Aliases "markdown-it" (expected) for "markdownit" (exported)
function require(module) {
if (module === "markdown-it") {
return window.markdownit;
}
}