mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
"use strict";
|
|
|
|
// Alias "markdown-it" (expected) to "markdownit" (exported)
|
|
module.exports = window.markdownit;
|
|
if (!module.exports) {
|
|
console.error("markdown-it must be loaded before markdownlint.");
|
|
}
|