2023-08-09 19:04:41 +08:00
|
|
|
define("@embroider/macros", ["exports", "require"], function (
|
|
|
|
__require__,
|
|
|
|
__exports__
|
|
|
|
) {
|
|
|
|
__exports__.importSync = __require__;
|
|
|
|
});
|
|
|
|
|
|
|
|
define("discourse-common/lib/loader-shim", ["exports", "require"], function (
|
|
|
|
__exports__,
|
|
|
|
__require__
|
|
|
|
) {
|
|
|
|
__exports__.default = (id, callback) => {
|
|
|
|
if (!__require__.has(id)) {
|
|
|
|
define(id, callback);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2020-09-15 22:59:41 +08:00
|
|
|
define("xss", ["exports"], function (__exports__) {
|
|
|
|
__exports__.default = window.filterXSS;
|
|
|
|
});
|
2023-11-07 00:59:49 +08:00
|
|
|
|
|
|
|
define("markdown-it", ["exports"], function (exports) {
|
|
|
|
exports.default = window.markdownit;
|
|
|
|
});
|