2023-08-09 07:04:41 -04: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 10:59:41 -04:00
|
|
|
define("xss", ["exports"], function (__exports__) {
|
|
|
|
__exports__.default = window.filterXSS;
|
|
|
|
});
|
2023-11-06 11:59:49 -05:00
|
|
|
|
|
|
|
define("markdown-it", ["exports"], function (exports) {
|
|
|
|
exports.default = window.markdownit;
|
|
|
|
});
|