mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
"use strict";
|
|
|
|
// Aliases "markdown-it" (expected) for "markdownit" (exported)
|
|
function require(module) {
|
|
if (module === "markdown-it") {
|
|
return window.markdownit;
|
|
}
|
|
}
|