1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

18
node_modules/mathjax-full/js/util/asyncLoad/system.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.setBaseURL = void 0;
var mathjax_js_1 = require("../../mathjax.js");
var root = 'file://' + __dirname.replace(/\/\/[^\/]*$/, '/');
if (!mathjax_js_1.mathjax.asyncLoad && typeof System !== 'undefined' && System.import) {
mathjax_js_1.mathjax.asyncLoad = function (name) {
return System.import(name, root);
};
}
function setBaseURL(URL) {
root = URL;
if (!root.match(/\/$/)) {
root += '/';
}
}
exports.setBaseURL = setBaseURL;
//# sourceMappingURL=system.js.map