@readme/markdown 7.7.2 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Code/style.scss +1 -1
- package/components/CodeTabs/index.tsx +10 -9
- package/dist/10.node.js +153 -153
- package/dist/11.node.js +13 -13
- package/dist/486.node.js +305 -305
- package/dist/550.node.js +8 -8
- package/dist/849.node.js +2 -2
- package/dist/940.node.js +56 -56
- package/dist/995.node.js +74 -74
- package/dist/index.d.ts +1 -1
- package/dist/lib/index.d.ts +2 -1
- package/dist/lib/mdastV6.d.ts +2 -0
- package/dist/main.css +1 -1
- package/dist/main.js +684 -480
- package/dist/main.node.js +646 -457
- package/dist/processor/migration/emphasis.d.ts +3 -0
- package/dist/processor/migration/images.d.ts +2 -0
- package/dist/processor/migration/index.d.ts +2 -0
- package/dist/processor/migration/linkReference.d.ts +3 -0
- package/dist/processor/migration/table-cell.d.ts +4 -0
- package/package.json +11 -8
package/dist/main.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
-
module.exports = factory(require("@readme/variable"), require("@tippyjs/react"), require("mermaid"), require("react"));
|
|
3
|
+
module.exports = factory(require("@readme/markdown-legacy"), require("@readme/variable"), require("@tippyjs/react"), require("mermaid"), require("react"));
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define(["@readme/variable", "@tippyjs/react", "mermaid", "react"], factory);
|
|
5
|
+
define(["@readme/markdown-legacy", "@readme/variable", "@tippyjs/react", "mermaid", "react"], factory);
|
|
6
6
|
else {
|
|
7
|
-
var a = typeof exports === 'object' ? factory(require("@readme/variable"), require("@tippyjs/react"), require("mermaid"), require("react")) : factory(root["@readme/variable"], root["@tippyjs/react"], root["mermaid"], root["React"]);
|
|
7
|
+
var a = typeof exports === 'object' ? factory(require("@readme/markdown-legacy"), require("@readme/variable"), require("@tippyjs/react"), require("mermaid"), require("react")) : factory(root["@readme/markdown-legacy"], root["@readme/variable"], root["@tippyjs/react"], root["mermaid"], root["React"]);
|
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
9
|
}
|
|
10
|
-
})(self, (__WEBPACK_EXTERNAL_MODULE__8167__, __WEBPACK_EXTERNAL_MODULE__6570__, __WEBPACK_EXTERNAL_MODULE__1387__, __WEBPACK_EXTERNAL_MODULE__1307__) => {
|
|
10
|
+
})(self, (__WEBPACK_EXTERNAL_MODULE__7374__, __WEBPACK_EXTERNAL_MODULE__8167__, __WEBPACK_EXTERNAL_MODULE__6570__, __WEBPACK_EXTERNAL_MODULE__1387__, __WEBPACK_EXTERNAL_MODULE__1307__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
@@ -7277,7 +7277,7 @@ module.exports = {
|
|
|
7277
7277
|
|
|
7278
7278
|
var fails = __webpack_require__(2074);
|
|
7279
7279
|
var wellKnownSymbol = __webpack_require__(1602);
|
|
7280
|
-
var V8_VERSION = __webpack_require__(
|
|
7280
|
+
var V8_VERSION = __webpack_require__(1928);
|
|
7281
7281
|
|
|
7282
7282
|
var SPECIES = wellKnownSymbol('species');
|
|
7283
7283
|
|
|
@@ -7712,16 +7712,16 @@ module.exports = function (O, key, value, options) {
|
|
|
7712
7712
|
|
|
7713
7713
|
"use strict";
|
|
7714
7714
|
|
|
7715
|
-
var
|
|
7715
|
+
var globalThis = __webpack_require__(1301);
|
|
7716
7716
|
|
|
7717
7717
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
7718
7718
|
var defineProperty = Object.defineProperty;
|
|
7719
7719
|
|
|
7720
7720
|
module.exports = function (key, value) {
|
|
7721
7721
|
try {
|
|
7722
|
-
defineProperty(
|
|
7722
|
+
defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
|
|
7723
7723
|
} catch (error) {
|
|
7724
|
-
|
|
7724
|
+
globalThis[key] = value;
|
|
7725
7725
|
} return value;
|
|
7726
7726
|
};
|
|
7727
7727
|
|
|
@@ -7749,10 +7749,10 @@ module.exports = !fails(function () {
|
|
|
7749
7749
|
|
|
7750
7750
|
"use strict";
|
|
7751
7751
|
|
|
7752
|
-
var
|
|
7752
|
+
var globalThis = __webpack_require__(1301);
|
|
7753
7753
|
var isObject = __webpack_require__(5335);
|
|
7754
7754
|
|
|
7755
|
-
var document =
|
|
7755
|
+
var document = globalThis.document;
|
|
7756
7756
|
// typeof document.createElement is 'object' in old IE
|
|
7757
7757
|
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
7758
7758
|
|
|
@@ -7839,26 +7839,50 @@ module.exports = DOMTokenListPrototype === Object.prototype ? undefined : DOMTok
|
|
|
7839
7839
|
|
|
7840
7840
|
/***/ }),
|
|
7841
7841
|
|
|
7842
|
-
/***/
|
|
7842
|
+
/***/ 290:
|
|
7843
7843
|
/***/ ((module) => {
|
|
7844
7844
|
|
|
7845
7845
|
"use strict";
|
|
7846
7846
|
|
|
7847
|
-
|
|
7847
|
+
// IE8- don't enum bug keys
|
|
7848
|
+
module.exports = [
|
|
7849
|
+
'constructor',
|
|
7850
|
+
'hasOwnProperty',
|
|
7851
|
+
'isPrototypeOf',
|
|
7852
|
+
'propertyIsEnumerable',
|
|
7853
|
+
'toLocaleString',
|
|
7854
|
+
'toString',
|
|
7855
|
+
'valueOf'
|
|
7856
|
+
];
|
|
7857
|
+
|
|
7858
|
+
|
|
7859
|
+
/***/ }),
|
|
7860
|
+
|
|
7861
|
+
/***/ 8340:
|
|
7862
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7863
|
+
|
|
7864
|
+
"use strict";
|
|
7865
|
+
|
|
7866
|
+
var globalThis = __webpack_require__(1301);
|
|
7867
|
+
|
|
7868
|
+
var navigator = globalThis.navigator;
|
|
7869
|
+
var userAgent = navigator && navigator.userAgent;
|
|
7870
|
+
|
|
7871
|
+
module.exports = userAgent ? String(userAgent) : '';
|
|
7848
7872
|
|
|
7849
7873
|
|
|
7850
7874
|
/***/ }),
|
|
7851
7875
|
|
|
7852
|
-
/***/
|
|
7876
|
+
/***/ 1928:
|
|
7853
7877
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7854
7878
|
|
|
7855
7879
|
"use strict";
|
|
7856
7880
|
|
|
7857
|
-
var
|
|
7858
|
-
var userAgent = __webpack_require__(
|
|
7881
|
+
var globalThis = __webpack_require__(1301);
|
|
7882
|
+
var userAgent = __webpack_require__(8340);
|
|
7859
7883
|
|
|
7860
|
-
var process =
|
|
7861
|
-
var Deno =
|
|
7884
|
+
var process = globalThis.process;
|
|
7885
|
+
var Deno = globalThis.Deno;
|
|
7862
7886
|
var versions = process && process.versions || Deno && Deno.version;
|
|
7863
7887
|
var v8 = versions && versions.v8;
|
|
7864
7888
|
var match, version;
|
|
@@ -7883,25 +7907,6 @@ if (!version && userAgent) {
|
|
|
7883
7907
|
module.exports = version;
|
|
7884
7908
|
|
|
7885
7909
|
|
|
7886
|
-
/***/ }),
|
|
7887
|
-
|
|
7888
|
-
/***/ 290:
|
|
7889
|
-
/***/ ((module) => {
|
|
7890
|
-
|
|
7891
|
-
"use strict";
|
|
7892
|
-
|
|
7893
|
-
// IE8- don't enum bug keys
|
|
7894
|
-
module.exports = [
|
|
7895
|
-
'constructor',
|
|
7896
|
-
'hasOwnProperty',
|
|
7897
|
-
'isPrototypeOf',
|
|
7898
|
-
'propertyIsEnumerable',
|
|
7899
|
-
'toLocaleString',
|
|
7900
|
-
'toString',
|
|
7901
|
-
'valueOf'
|
|
7902
|
-
];
|
|
7903
|
-
|
|
7904
|
-
|
|
7905
7910
|
/***/ }),
|
|
7906
7911
|
|
|
7907
7912
|
/***/ 1605:
|
|
@@ -7909,7 +7914,7 @@ module.exports = [
|
|
|
7909
7914
|
|
|
7910
7915
|
"use strict";
|
|
7911
7916
|
|
|
7912
|
-
var
|
|
7917
|
+
var globalThis = __webpack_require__(1301);
|
|
7913
7918
|
var getOwnPropertyDescriptor = (__webpack_require__(7632).f);
|
|
7914
7919
|
var createNonEnumerableProperty = __webpack_require__(7712);
|
|
7915
7920
|
var defineBuiltIn = __webpack_require__(7485);
|
|
@@ -7938,11 +7943,11 @@ module.exports = function (options, source) {
|
|
|
7938
7943
|
var STATIC = options.stat;
|
|
7939
7944
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
7940
7945
|
if (GLOBAL) {
|
|
7941
|
-
target =
|
|
7946
|
+
target = globalThis;
|
|
7942
7947
|
} else if (STATIC) {
|
|
7943
|
-
target =
|
|
7948
|
+
target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
|
|
7944
7949
|
} else {
|
|
7945
|
-
target =
|
|
7950
|
+
target = globalThis[TARGET] && globalThis[TARGET].prototype;
|
|
7946
7951
|
}
|
|
7947
7952
|
if (target) for (key in source) {
|
|
7948
7953
|
sourceProperty = source[key];
|
|
@@ -8272,7 +8277,7 @@ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
|
8272
8277
|
|
|
8273
8278
|
"use strict";
|
|
8274
8279
|
|
|
8275
|
-
var
|
|
8280
|
+
var globalThis = __webpack_require__(1301);
|
|
8276
8281
|
var isCallable = __webpack_require__(8420);
|
|
8277
8282
|
|
|
8278
8283
|
var aFunction = function (argument) {
|
|
@@ -8280,7 +8285,7 @@ var aFunction = function (argument) {
|
|
|
8280
8285
|
};
|
|
8281
8286
|
|
|
8282
8287
|
module.exports = function (namespace, method) {
|
|
8283
|
-
return arguments.length < 2 ? aFunction(
|
|
8288
|
+
return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
|
|
8284
8289
|
};
|
|
8285
8290
|
|
|
8286
8291
|
|
|
@@ -8386,7 +8391,7 @@ module.exports = function (V, P) {
|
|
|
8386
8391
|
|
|
8387
8392
|
/***/ }),
|
|
8388
8393
|
|
|
8389
|
-
/***/
|
|
8394
|
+
/***/ 1301:
|
|
8390
8395
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
8391
8396
|
|
|
8392
8397
|
"use strict";
|
|
@@ -8552,7 +8557,7 @@ module.exports = store.inspectSource;
|
|
|
8552
8557
|
"use strict";
|
|
8553
8558
|
|
|
8554
8559
|
var NATIVE_WEAK_MAP = __webpack_require__(8369);
|
|
8555
|
-
var
|
|
8560
|
+
var globalThis = __webpack_require__(1301);
|
|
8556
8561
|
var isObject = __webpack_require__(5335);
|
|
8557
8562
|
var createNonEnumerableProperty = __webpack_require__(7712);
|
|
8558
8563
|
var hasOwn = __webpack_require__(6490);
|
|
@@ -8561,8 +8566,8 @@ var sharedKey = __webpack_require__(5904);
|
|
|
8561
8566
|
var hiddenKeys = __webpack_require__(7708);
|
|
8562
8567
|
|
|
8563
8568
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
8564
|
-
var TypeError =
|
|
8565
|
-
var WeakMap =
|
|
8569
|
+
var TypeError = globalThis.TypeError;
|
|
8570
|
+
var WeakMap = globalThis.WeakMap;
|
|
8566
8571
|
var set, get, has;
|
|
8567
8572
|
|
|
8568
8573
|
var enforce = function (it) {
|
|
@@ -9312,7 +9317,8 @@ var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
|
9312
9317
|
activeXDocument.write(scriptTag(''));
|
|
9313
9318
|
activeXDocument.close();
|
|
9314
9319
|
var temp = activeXDocument.parentWindow.Object;
|
|
9315
|
-
|
|
9320
|
+
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
9321
|
+
activeXDocument = null;
|
|
9316
9322
|
return temp;
|
|
9317
9323
|
};
|
|
9318
9324
|
|
|
@@ -9765,9 +9771,9 @@ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
|
9765
9771
|
|
|
9766
9772
|
"use strict";
|
|
9767
9773
|
|
|
9768
|
-
var
|
|
9774
|
+
var globalThis = __webpack_require__(1301);
|
|
9769
9775
|
|
|
9770
|
-
module.exports =
|
|
9776
|
+
module.exports = globalThis;
|
|
9771
9777
|
|
|
9772
9778
|
|
|
9773
9779
|
/***/ }),
|
|
@@ -9979,10 +9985,10 @@ module.exports = function (R) {
|
|
|
9979
9985
|
"use strict";
|
|
9980
9986
|
|
|
9981
9987
|
var fails = __webpack_require__(2074);
|
|
9982
|
-
var
|
|
9988
|
+
var globalThis = __webpack_require__(1301);
|
|
9983
9989
|
|
|
9984
9990
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
9985
|
-
var $RegExp =
|
|
9991
|
+
var $RegExp = globalThis.RegExp;
|
|
9986
9992
|
|
|
9987
9993
|
var UNSUPPORTED_Y = fails(function () {
|
|
9988
9994
|
var re = $RegExp('a', 'y');
|
|
@@ -10018,10 +10024,10 @@ module.exports = {
|
|
|
10018
10024
|
"use strict";
|
|
10019
10025
|
|
|
10020
10026
|
var fails = __webpack_require__(2074);
|
|
10021
|
-
var
|
|
10027
|
+
var globalThis = __webpack_require__(1301);
|
|
10022
10028
|
|
|
10023
10029
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
10024
|
-
var $RegExp =
|
|
10030
|
+
var $RegExp = globalThis.RegExp;
|
|
10025
10031
|
|
|
10026
10032
|
module.exports = fails(function () {
|
|
10027
10033
|
var re = $RegExp('.', 's');
|
|
@@ -10037,10 +10043,10 @@ module.exports = fails(function () {
|
|
|
10037
10043
|
"use strict";
|
|
10038
10044
|
|
|
10039
10045
|
var fails = __webpack_require__(2074);
|
|
10040
|
-
var
|
|
10046
|
+
var globalThis = __webpack_require__(1301);
|
|
10041
10047
|
|
|
10042
10048
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
10043
|
-
var $RegExp =
|
|
10049
|
+
var $RegExp = globalThis.RegExp;
|
|
10044
10050
|
|
|
10045
10051
|
module.exports = fails(function () {
|
|
10046
10052
|
var re = $RegExp('(?<a>b)', 'g');
|
|
@@ -10114,17 +10120,17 @@ module.exports = function (key) {
|
|
|
10114
10120
|
"use strict";
|
|
10115
10121
|
|
|
10116
10122
|
var IS_PURE = __webpack_require__(6926);
|
|
10117
|
-
var globalThis = __webpack_require__(
|
|
10123
|
+
var globalThis = __webpack_require__(1301);
|
|
10118
10124
|
var defineGlobalProperty = __webpack_require__(9430);
|
|
10119
10125
|
|
|
10120
10126
|
var SHARED = '__core-js_shared__';
|
|
10121
10127
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
10122
10128
|
|
|
10123
10129
|
(store.versions || (store.versions = [])).push({
|
|
10124
|
-
version: '3.
|
|
10130
|
+
version: '3.38.1',
|
|
10125
10131
|
mode: IS_PURE ? 'pure' : 'global',
|
|
10126
10132
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
10127
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
10133
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
|
|
10128
10134
|
source: 'https://github.com/zloirock/core-js'
|
|
10129
10135
|
});
|
|
10130
10136
|
|
|
@@ -10235,11 +10241,11 @@ module.exports = {
|
|
|
10235
10241
|
"use strict";
|
|
10236
10242
|
|
|
10237
10243
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
10238
|
-
var V8_VERSION = __webpack_require__(
|
|
10244
|
+
var V8_VERSION = __webpack_require__(1928);
|
|
10239
10245
|
var fails = __webpack_require__(2074);
|
|
10240
|
-
var
|
|
10246
|
+
var globalThis = __webpack_require__(1301);
|
|
10241
10247
|
|
|
10242
|
-
var $String =
|
|
10248
|
+
var $String = globalThis.String;
|
|
10243
10249
|
|
|
10244
10250
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
10245
10251
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
@@ -10567,10 +10573,10 @@ module.exports = DESCRIPTORS && fails(function () {
|
|
|
10567
10573
|
|
|
10568
10574
|
"use strict";
|
|
10569
10575
|
|
|
10570
|
-
var
|
|
10576
|
+
var globalThis = __webpack_require__(1301);
|
|
10571
10577
|
var isCallable = __webpack_require__(8420);
|
|
10572
10578
|
|
|
10573
|
-
var WeakMap =
|
|
10579
|
+
var WeakMap = globalThis.WeakMap;
|
|
10574
10580
|
|
|
10575
10581
|
module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
10576
10582
|
|
|
@@ -10614,14 +10620,14 @@ exports.f = wellKnownSymbol;
|
|
|
10614
10620
|
|
|
10615
10621
|
"use strict";
|
|
10616
10622
|
|
|
10617
|
-
var
|
|
10623
|
+
var globalThis = __webpack_require__(1301);
|
|
10618
10624
|
var shared = __webpack_require__(2);
|
|
10619
10625
|
var hasOwn = __webpack_require__(6490);
|
|
10620
10626
|
var uid = __webpack_require__(665);
|
|
10621
10627
|
var NATIVE_SYMBOL = __webpack_require__(2072);
|
|
10622
10628
|
var USE_SYMBOL_AS_UID = __webpack_require__(5225);
|
|
10623
10629
|
|
|
10624
|
-
var Symbol =
|
|
10630
|
+
var Symbol = globalThis.Symbol;
|
|
10625
10631
|
var WellKnownSymbolsStore = shared('wks');
|
|
10626
10632
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
10627
10633
|
|
|
@@ -10664,7 +10670,7 @@ var createProperty = __webpack_require__(2057);
|
|
|
10664
10670
|
var arraySpeciesCreate = __webpack_require__(2998);
|
|
10665
10671
|
var arrayMethodHasSpeciesSupport = __webpack_require__(5634);
|
|
10666
10672
|
var wellKnownSymbol = __webpack_require__(1602);
|
|
10667
|
-
var V8_VERSION = __webpack_require__(
|
|
10673
|
+
var V8_VERSION = __webpack_require__(1928);
|
|
10668
10674
|
|
|
10669
10675
|
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
|
10670
10676
|
|
|
@@ -10899,7 +10905,7 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
|
|
|
10899
10905
|
var target = state.target;
|
|
10900
10906
|
var index = state.index++;
|
|
10901
10907
|
if (!target || index >= target.length) {
|
|
10902
|
-
state.target =
|
|
10908
|
+
state.target = null;
|
|
10903
10909
|
return createIterResultObject(undefined, true);
|
|
10904
10910
|
}
|
|
10905
10911
|
switch (state.kind) {
|
|
@@ -11175,7 +11181,7 @@ if ($stringify) {
|
|
|
11175
11181
|
var $ = __webpack_require__(1605);
|
|
11176
11182
|
var IS_PURE = __webpack_require__(6926);
|
|
11177
11183
|
var DESCRIPTORS = __webpack_require__(5077);
|
|
11178
|
-
var
|
|
11184
|
+
var globalThis = __webpack_require__(1301);
|
|
11179
11185
|
var path = __webpack_require__(9720);
|
|
11180
11186
|
var uncurryThis = __webpack_require__(281);
|
|
11181
11187
|
var isForced = __webpack_require__(4977);
|
|
@@ -11192,10 +11198,10 @@ var thisNumberValue = __webpack_require__(7809);
|
|
|
11192
11198
|
var trim = (__webpack_require__(9163).trim);
|
|
11193
11199
|
|
|
11194
11200
|
var NUMBER = 'Number';
|
|
11195
|
-
var NativeNumber =
|
|
11201
|
+
var NativeNumber = globalThis[NUMBER];
|
|
11196
11202
|
var PureNumberNamespace = path[NUMBER];
|
|
11197
11203
|
var NumberPrototype = NativeNumber.prototype;
|
|
11198
|
-
var TypeError =
|
|
11204
|
+
var TypeError = globalThis.TypeError;
|
|
11199
11205
|
var stringSlice = uncurryThis(''.slice);
|
|
11200
11206
|
var charCodeAt = uncurryThis(''.charCodeAt);
|
|
11201
11207
|
|
|
@@ -11652,7 +11658,7 @@ fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNa
|
|
|
11652
11658
|
"use strict";
|
|
11653
11659
|
|
|
11654
11660
|
var $ = __webpack_require__(1605);
|
|
11655
|
-
var
|
|
11661
|
+
var globalThis = __webpack_require__(1301);
|
|
11656
11662
|
var call = __webpack_require__(2368);
|
|
11657
11663
|
var uncurryThis = __webpack_require__(281);
|
|
11658
11664
|
var IS_PURE = __webpack_require__(6926);
|
|
@@ -11697,11 +11703,11 @@ var setInternalState = InternalStateModule.set;
|
|
|
11697
11703
|
var getInternalState = InternalStateModule.getterFor(SYMBOL);
|
|
11698
11704
|
|
|
11699
11705
|
var ObjectPrototype = Object[PROTOTYPE];
|
|
11700
|
-
var $Symbol =
|
|
11706
|
+
var $Symbol = globalThis.Symbol;
|
|
11701
11707
|
var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
|
|
11702
|
-
var RangeError =
|
|
11703
|
-
var TypeError =
|
|
11704
|
-
var QObject =
|
|
11708
|
+
var RangeError = globalThis.RangeError;
|
|
11709
|
+
var TypeError = globalThis.TypeError;
|
|
11710
|
+
var QObject = globalThis.QObject;
|
|
11705
11711
|
var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
11706
11712
|
var nativeDefineProperty = definePropertyModule.f;
|
|
11707
11713
|
var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
|
|
@@ -11820,7 +11826,7 @@ if (!NATIVE_SYMBOL) {
|
|
|
11820
11826
|
var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);
|
|
11821
11827
|
var tag = uid(description);
|
|
11822
11828
|
var setter = function (value) {
|
|
11823
|
-
var $this = this === undefined ?
|
|
11829
|
+
var $this = this === undefined ? globalThis : this;
|
|
11824
11830
|
if ($this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);
|
|
11825
11831
|
if (hasOwn($this, HIDDEN) && hasOwn($this[HIDDEN], tag)) $this[HIDDEN][tag] = false;
|
|
11826
11832
|
var descriptor = createPropertyDescriptor(1, value);
|
|
@@ -11926,7 +11932,7 @@ hiddenKeys[HIDDEN] = true;
|
|
|
11926
11932
|
|
|
11927
11933
|
var $ = __webpack_require__(1605);
|
|
11928
11934
|
var DESCRIPTORS = __webpack_require__(5077);
|
|
11929
|
-
var
|
|
11935
|
+
var globalThis = __webpack_require__(1301);
|
|
11930
11936
|
var uncurryThis = __webpack_require__(281);
|
|
11931
11937
|
var hasOwn = __webpack_require__(6490);
|
|
11932
11938
|
var isCallable = __webpack_require__(8420);
|
|
@@ -11935,7 +11941,7 @@ var toString = __webpack_require__(5362);
|
|
|
11935
11941
|
var defineBuiltInAccessor = __webpack_require__(6477);
|
|
11936
11942
|
var copyConstructorProperties = __webpack_require__(4361);
|
|
11937
11943
|
|
|
11938
|
-
var NativeSymbol =
|
|
11944
|
+
var NativeSymbol = globalThis.Symbol;
|
|
11939
11945
|
var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
|
|
11940
11946
|
|
|
11941
11947
|
if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
|
|
@@ -11947,6 +11953,7 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
|
|
|
11947
11953
|
var SymbolWrapper = function Symbol() {
|
|
11948
11954
|
var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
|
|
11949
11955
|
var result = isPrototypeOf(SymbolPrototype, this)
|
|
11956
|
+
// eslint-disable-next-line sonar/inconsistent-function-call -- ok
|
|
11950
11957
|
? new NativeSymbol(description)
|
|
11951
11958
|
// in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
|
|
11952
11959
|
: description === undefined ? NativeSymbol() : NativeSymbol(description);
|
|
@@ -12094,7 +12101,7 @@ defineSymbolToPrimitive();
|
|
|
12094
12101
|
|
|
12095
12102
|
"use strict";
|
|
12096
12103
|
|
|
12097
|
-
var
|
|
12104
|
+
var globalThis = __webpack_require__(1301);
|
|
12098
12105
|
var DOMIterables = __webpack_require__(5549);
|
|
12099
12106
|
var DOMTokenListPrototype = __webpack_require__(2975);
|
|
12100
12107
|
var forEach = __webpack_require__(516);
|
|
@@ -12111,7 +12118,7 @@ var handlePrototype = function (CollectionPrototype) {
|
|
|
12111
12118
|
|
|
12112
12119
|
for (var COLLECTION_NAME in DOMIterables) {
|
|
12113
12120
|
if (DOMIterables[COLLECTION_NAME]) {
|
|
12114
|
-
handlePrototype(
|
|
12121
|
+
handlePrototype(globalThis[COLLECTION_NAME] && globalThis[COLLECTION_NAME].prototype);
|
|
12115
12122
|
}
|
|
12116
12123
|
}
|
|
12117
12124
|
|
|
@@ -12125,7 +12132,7 @@ handlePrototype(DOMTokenListPrototype);
|
|
|
12125
12132
|
|
|
12126
12133
|
"use strict";
|
|
12127
12134
|
|
|
12128
|
-
var
|
|
12135
|
+
var globalThis = __webpack_require__(1301);
|
|
12129
12136
|
var DOMIterables = __webpack_require__(5549);
|
|
12130
12137
|
var DOMTokenListPrototype = __webpack_require__(2975);
|
|
12131
12138
|
var ArrayIteratorMethods = __webpack_require__(8665);
|
|
@@ -12157,7 +12164,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
|
|
|
12157
12164
|
};
|
|
12158
12165
|
|
|
12159
12166
|
for (var COLLECTION_NAME in DOMIterables) {
|
|
12160
|
-
handlePrototype(
|
|
12167
|
+
handlePrototype(globalThis[COLLECTION_NAME] && globalThis[COLLECTION_NAME].prototype, COLLECTION_NAME);
|
|
12161
12168
|
}
|
|
12162
12169
|
|
|
12163
12170
|
handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
|
|
@@ -13156,6 +13163,14 @@ module.exports = function () {
|
|
|
13156
13163
|
};
|
|
13157
13164
|
|
|
13158
13165
|
|
|
13166
|
+
/***/ }),
|
|
13167
|
+
|
|
13168
|
+
/***/ 7374:
|
|
13169
|
+
/***/ ((module) => {
|
|
13170
|
+
|
|
13171
|
+
"use strict";
|
|
13172
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__7374__;
|
|
13173
|
+
|
|
13159
13174
|
/***/ }),
|
|
13160
13175
|
|
|
13161
13176
|
/***/ 8167:
|
|
@@ -13313,6 +13328,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
13313
13328
|
compile: () => (/* reexport */ lib_compile),
|
|
13314
13329
|
hast: () => (/* reexport */ lib_hast),
|
|
13315
13330
|
mdast: () => (/* reexport */ lib_mdast),
|
|
13331
|
+
mdastV6: () => (/* reexport */ lib_mdastV6),
|
|
13316
13332
|
mdx: () => (/* reexport */ lib_mdx),
|
|
13317
13333
|
plain: () => (/* reexport */ lib_plain),
|
|
13318
13334
|
remarkPlugins: () => (/* reexport */ remarkPlugins),
|
|
@@ -13374,7 +13390,7 @@ __webpack_require__.d(util_types_namespaceObject, {
|
|
|
13374
13390
|
// EXTERNAL MODULE: external {"amd":"react","commonjs":"react","commonjs2":"react","root":"React","umd":"react"}
|
|
13375
13391
|
var external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_ = __webpack_require__(1307);
|
|
13376
13392
|
var external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default = /*#__PURE__*/__webpack_require__.n(external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_);
|
|
13377
|
-
;//
|
|
13393
|
+
;// ./components/Accordion/index.tsx
|
|
13378
13394
|
|
|
13379
13395
|
|
|
13380
13396
|
const Accordion = ({ children, icon, iconColor, title }) => {
|
|
@@ -13430,11 +13446,11 @@ var es_regexp_exec = __webpack_require__(7136);
|
|
|
13430
13446
|
var es_string_match = __webpack_require__(8636);
|
|
13431
13447
|
// EXTERNAL MODULE: ./node_modules/prop-types/index.js
|
|
13432
13448
|
var prop_types = __webpack_require__(5556);
|
|
13433
|
-
;//
|
|
13449
|
+
;// ./contexts/BaseUrl.js
|
|
13434
13450
|
|
|
13435
13451
|
var BaseUrlContext = /*#__PURE__*/external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createContext('/');
|
|
13436
13452
|
/* harmony default export */ const BaseUrl = (BaseUrlContext);
|
|
13437
|
-
;//
|
|
13453
|
+
;// ./components/Anchor.jsx
|
|
13438
13454
|
|
|
13439
13455
|
|
|
13440
13456
|
|
|
@@ -13541,7 +13557,7 @@ Anchor.defaultProps = {
|
|
|
13541
13557
|
title: ''
|
|
13542
13558
|
};
|
|
13543
13559
|
/* harmony default export */ const components_Anchor = (Anchor);
|
|
13544
|
-
;//
|
|
13560
|
+
;// ./components/Callout/index.tsx
|
|
13545
13561
|
|
|
13546
13562
|
const themes = {
|
|
13547
13563
|
'\uD83D\uDCD8': 'info',
|
|
@@ -13570,7 +13586,7 @@ const Callout = (props) => {
|
|
|
13570
13586
|
};
|
|
13571
13587
|
/* harmony default export */ const components_Callout = (Callout);
|
|
13572
13588
|
|
|
13573
|
-
;//
|
|
13589
|
+
;// ./components/Cards/index.tsx
|
|
13574
13590
|
|
|
13575
13591
|
|
|
13576
13592
|
const Card = ({ children, href, icon, iconColor, target, title }) => {
|
|
@@ -13589,7 +13605,7 @@ const CardsGrid = ({ columns = 2, children }) => {
|
|
|
13589
13605
|
// EXTERNAL MODULE: ./node_modules/copy-to-clipboard/index.js
|
|
13590
13606
|
var copy_to_clipboard = __webpack_require__(7965);
|
|
13591
13607
|
var copy_to_clipboard_default = /*#__PURE__*/__webpack_require__.n(copy_to_clipboard);
|
|
13592
|
-
;//
|
|
13608
|
+
;// ./components/Code/index.tsx
|
|
13593
13609
|
|
|
13594
13610
|
|
|
13595
13611
|
// Only load CodeMirror in the browser, for SSR
|
|
@@ -13639,23 +13655,24 @@ const Code = (props) => {
|
|
|
13639
13655
|
|
|
13640
13656
|
// EXTERNAL MODULE: ./node_modules/@readme/syntax-highlighter/dist/index.js
|
|
13641
13657
|
var dist = __webpack_require__(4668);
|
|
13642
|
-
;//
|
|
13658
|
+
;// ./components/CodeTabs/index.tsx
|
|
13643
13659
|
|
|
13644
13660
|
|
|
13645
13661
|
let mermaid;
|
|
13646
|
-
if (typeof window !== 'undefined') {
|
|
13647
|
-
Promise.resolve(/* import() */).then(__webpack_require__.t.bind(__webpack_require__, 1387, 23)).then(module => {
|
|
13648
|
-
mermaid = module.default;
|
|
13649
|
-
});
|
|
13650
|
-
}
|
|
13651
13662
|
const CodeTabs = props => {
|
|
13652
13663
|
var _a;
|
|
13653
13664
|
const { children, theme } = props;
|
|
13654
|
-
//
|
|
13665
|
+
// render Mermaid diagram
|
|
13655
13666
|
(0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.useEffect)(() => {
|
|
13656
|
-
|
|
13657
|
-
|
|
13658
|
-
|
|
13667
|
+
if (typeof window !== 'undefined') {
|
|
13668
|
+
Promise.resolve(/* import() */).then(__webpack_require__.t.bind(__webpack_require__, 1387, 23)).then(module => {
|
|
13669
|
+
mermaid = module.default;
|
|
13670
|
+
mermaid.initialize({
|
|
13671
|
+
theme: theme === 'dark' ? 'dark' : 'default',
|
|
13672
|
+
});
|
|
13673
|
+
mermaid.contentLoaded();
|
|
13674
|
+
});
|
|
13675
|
+
}
|
|
13659
13676
|
}, [theme]);
|
|
13660
13677
|
function handleClick({ target }, index) {
|
|
13661
13678
|
const $wrap = target.parentElement.parentElement;
|
|
@@ -13681,7 +13698,7 @@ const CodeTabs = props => {
|
|
|
13681
13698
|
};
|
|
13682
13699
|
/* harmony default export */ const components_CodeTabs = (CodeTabs);
|
|
13683
13700
|
|
|
13684
|
-
;//
|
|
13701
|
+
;// ./components/Embed/index.tsx
|
|
13685
13702
|
var __rest = (undefined && undefined.__rest) || function (s, e) {
|
|
13686
13703
|
var t = {};
|
|
13687
13704
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -13742,12 +13759,12 @@ const Embed = (_a) => {
|
|
|
13742
13759
|
// EXTERNAL MODULE: external "@tippyjs/react"
|
|
13743
13760
|
var react_ = __webpack_require__(6570);
|
|
13744
13761
|
var react_default = /*#__PURE__*/__webpack_require__.n(react_);
|
|
13745
|
-
;//
|
|
13762
|
+
;// ./contexts/GlossaryTerms.ts
|
|
13746
13763
|
|
|
13747
13764
|
const GlossaryContext = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createContext)([]);
|
|
13748
13765
|
/* harmony default export */ const GlossaryTerms = (GlossaryContext);
|
|
13749
13766
|
|
|
13750
|
-
;//
|
|
13767
|
+
;// ./components/Glossary/index.tsx
|
|
13751
13768
|
|
|
13752
13769
|
|
|
13753
13770
|
|
|
@@ -13770,7 +13787,7 @@ const GlossaryWithContext = props => {
|
|
|
13770
13787
|
|
|
13771
13788
|
// EXTERNAL MODULE: ./node_modules/react-dom/server.browser.js
|
|
13772
13789
|
var server_browser = __webpack_require__(5848);
|
|
13773
|
-
;//
|
|
13790
|
+
;// ./components/HTMLBlock/index.tsx
|
|
13774
13791
|
|
|
13775
13792
|
|
|
13776
13793
|
const MATCH_SCRIPT_TAGS = /<script\b[^>]*>([\s\S]*?)<\/script *>\n?/gim;
|
|
@@ -13801,7 +13818,7 @@ const HTMLBlock = ({ children = '', runScripts, safeMode = false }) => {
|
|
|
13801
13818
|
};
|
|
13802
13819
|
/* harmony default export */ const components_HTMLBlock = (HTMLBlock);
|
|
13803
13820
|
|
|
13804
|
-
;//
|
|
13821
|
+
;// ./components/Heading/index.tsx
|
|
13805
13822
|
var Heading_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
13806
13823
|
var t = {};
|
|
13807
13824
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -13826,7 +13843,7 @@ const Heading = (_a) => {
|
|
|
13826
13843
|
const CreateHeading = (depth) => (props) => external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement(Heading, Object.assign({}, props, { depth: depth, tag: `h${depth}` }));
|
|
13827
13844
|
/* harmony default export */ const components_Heading = (CreateHeading);
|
|
13828
13845
|
|
|
13829
|
-
;//
|
|
13846
|
+
;// ./components/Image/index.tsx
|
|
13830
13847
|
|
|
13831
13848
|
const Image = (Props) => {
|
|
13832
13849
|
const { align = '', alt = '', border = false, caption, className = '', height = 'auto', src, title = '', width = 'auto', lazy = true, children, } = Props;
|
|
@@ -13869,7 +13886,7 @@ const Image = (Props) => {
|
|
|
13869
13886
|
};
|
|
13870
13887
|
/* harmony default export */ const components_Image = (Image);
|
|
13871
13888
|
|
|
13872
|
-
;//
|
|
13889
|
+
;// ./components/Table/index.tsx
|
|
13873
13890
|
|
|
13874
13891
|
const Table = (props) => {
|
|
13875
13892
|
const { children } = props;
|
|
@@ -13879,7 +13896,7 @@ const Table = (props) => {
|
|
|
13879
13896
|
};
|
|
13880
13897
|
/* harmony default export */ const components_Table = (Table);
|
|
13881
13898
|
|
|
13882
|
-
;//
|
|
13899
|
+
;// ./components/Tabs/index.tsx
|
|
13883
13900
|
|
|
13884
13901
|
|
|
13885
13902
|
const Tab = ({ children }) => {
|
|
@@ -13896,7 +13913,7 @@ const Tabs = ({ children }) => {
|
|
|
13896
13913
|
};
|
|
13897
13914
|
/* harmony default export */ const components_Tabs = (Tabs);
|
|
13898
13915
|
|
|
13899
|
-
;//
|
|
13916
|
+
;// ./components/TableOfContents/index.tsx
|
|
13900
13917
|
|
|
13901
13918
|
function TableOfContents({ children }) {
|
|
13902
13919
|
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
@@ -13909,7 +13926,7 @@ function TableOfContents({ children }) {
|
|
|
13909
13926
|
}
|
|
13910
13927
|
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
13911
13928
|
|
|
13912
|
-
;//
|
|
13929
|
+
;// ./components/index.ts
|
|
13913
13930
|
|
|
13914
13931
|
|
|
13915
13932
|
|
|
@@ -13949,7 +13966,7 @@ var es_object_get_own_property_descriptors = __webpack_require__(3101);
|
|
|
13949
13966
|
var es_string_includes = __webpack_require__(3148);
|
|
13950
13967
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.for-each.js
|
|
13951
13968
|
var web_dom_collections_for_each = __webpack_require__(8379);
|
|
13952
|
-
;//
|
|
13969
|
+
;// ./options.js
|
|
13953
13970
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
13954
13971
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
13955
13972
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
@@ -14052,7 +14069,7 @@ var parseOptions = function parseOptions() {
|
|
|
14052
14069
|
return opts;
|
|
14053
14070
|
};
|
|
14054
14071
|
|
|
14055
|
-
;//
|
|
14072
|
+
;// ./node_modules/mdast-util-to-string/lib/index.js
|
|
14056
14073
|
/**
|
|
14057
14074
|
* @typedef {import('mdast').Nodes} Nodes
|
|
14058
14075
|
*
|
|
@@ -14162,7 +14179,7 @@ function node(value) {
|
|
|
14162
14179
|
return Boolean(value && typeof value === 'object')
|
|
14163
14180
|
}
|
|
14164
14181
|
|
|
14165
|
-
;//
|
|
14182
|
+
;// ./node_modules/micromark-util-chunked/index.js
|
|
14166
14183
|
/**
|
|
14167
14184
|
* Like `Array#splice`, but smarter for giant arrays.
|
|
14168
14185
|
*
|
|
@@ -14245,7 +14262,7 @@ function push(list, items) {
|
|
|
14245
14262
|
return items
|
|
14246
14263
|
}
|
|
14247
14264
|
|
|
14248
|
-
;//
|
|
14265
|
+
;// ./node_modules/micromark-util-subtokenize/index.js
|
|
14249
14266
|
/**
|
|
14250
14267
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
14251
14268
|
* @typedef {import('micromark-util-types').Event} Event
|
|
@@ -14471,7 +14488,7 @@ function subcontent(events, eventIndex) {
|
|
|
14471
14488
|
return gaps
|
|
14472
14489
|
}
|
|
14473
14490
|
|
|
14474
|
-
;//
|
|
14491
|
+
;// ./node_modules/micromark/lib/postprocess.js
|
|
14475
14492
|
/**
|
|
14476
14493
|
* @typedef {import('micromark-util-types').Event} Event
|
|
14477
14494
|
*/
|
|
@@ -14489,7 +14506,7 @@ function postprocess(events) {
|
|
|
14489
14506
|
return events
|
|
14490
14507
|
}
|
|
14491
14508
|
|
|
14492
|
-
;//
|
|
14509
|
+
;// ./node_modules/micromark-util-combine-extensions/index.js
|
|
14493
14510
|
/**
|
|
14494
14511
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
14495
14512
|
* @typedef {import('micromark-util-types').Handles} Handles
|
|
@@ -14627,7 +14644,7 @@ function htmlExtension(all, extension) {
|
|
|
14627
14644
|
}
|
|
14628
14645
|
}
|
|
14629
14646
|
|
|
14630
|
-
;//
|
|
14647
|
+
;// ./node_modules/micromark-util-character/index.js
|
|
14631
14648
|
/**
|
|
14632
14649
|
* @typedef {import('micromark-util-types').Code} Code
|
|
14633
14650
|
*/
|
|
@@ -14872,7 +14889,7 @@ function regexCheck(regex) {
|
|
|
14872
14889
|
return code !== null && code > -1 && regex.test(String.fromCharCode(code));
|
|
14873
14890
|
}
|
|
14874
14891
|
}
|
|
14875
|
-
;//
|
|
14892
|
+
;// ./node_modules/micromark-factory-space/index.js
|
|
14876
14893
|
/**
|
|
14877
14894
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
14878
14895
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -14940,7 +14957,7 @@ function factorySpace(effects, ok, type, max) {
|
|
|
14940
14957
|
}
|
|
14941
14958
|
}
|
|
14942
14959
|
|
|
14943
|
-
;//
|
|
14960
|
+
;// ./node_modules/micromark/lib/initialize/content.js
|
|
14944
14961
|
/**
|
|
14945
14962
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
14946
14963
|
* @typedef {import('micromark-util-types').Initializer} Initializer
|
|
@@ -15021,7 +15038,7 @@ function initializeContent(effects) {
|
|
|
15021
15038
|
}
|
|
15022
15039
|
}
|
|
15023
15040
|
|
|
15024
|
-
;//
|
|
15041
|
+
;// ./node_modules/micromark/lib/initialize/document.js
|
|
15025
15042
|
/**
|
|
15026
15043
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
15027
15044
|
* @typedef {import('micromark-util-types').ContainerState} ContainerState
|
|
@@ -15405,7 +15422,7 @@ function tokenizeContainer(effects, ok, nok) {
|
|
|
15405
15422
|
)
|
|
15406
15423
|
}
|
|
15407
15424
|
|
|
15408
|
-
;//
|
|
15425
|
+
;// ./node_modules/micromark-core-commonmark/lib/blank-line.js
|
|
15409
15426
|
/**
|
|
15410
15427
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
15411
15428
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -15467,7 +15484,7 @@ function tokenizeBlankLine(effects, ok, nok) {
|
|
|
15467
15484
|
}
|
|
15468
15485
|
}
|
|
15469
15486
|
|
|
15470
|
-
;//
|
|
15487
|
+
;// ./node_modules/micromark-core-commonmark/lib/content.js
|
|
15471
15488
|
/**
|
|
15472
15489
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
15473
15490
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -15637,7 +15654,7 @@ function tokenizeContinuation(effects, ok, nok) {
|
|
|
15637
15654
|
}
|
|
15638
15655
|
}
|
|
15639
15656
|
|
|
15640
|
-
;//
|
|
15657
|
+
;// ./node_modules/micromark/lib/initialize/flow.js
|
|
15641
15658
|
/**
|
|
15642
15659
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
15643
15660
|
* @typedef {import('micromark-util-types').Initializer} Initializer
|
|
@@ -15707,7 +15724,7 @@ function initializeFlow(effects) {
|
|
|
15707
15724
|
}
|
|
15708
15725
|
}
|
|
15709
15726
|
|
|
15710
|
-
;//
|
|
15727
|
+
;// ./node_modules/micromark/lib/initialize/text.js
|
|
15711
15728
|
/**
|
|
15712
15729
|
* @typedef {import('micromark-util-types').Code} Code
|
|
15713
15730
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
@@ -15919,7 +15936,7 @@ function resolveAllLineSuffixes(events, context) {
|
|
|
15919
15936
|
return events
|
|
15920
15937
|
}
|
|
15921
15938
|
|
|
15922
|
-
;//
|
|
15939
|
+
;// ./node_modules/micromark-util-resolve-all/index.js
|
|
15923
15940
|
/**
|
|
15924
15941
|
* @typedef {import('micromark-util-types').Event} Event
|
|
15925
15942
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -15955,7 +15972,7 @@ function resolveAll(constructs, events, context) {
|
|
|
15955
15972
|
return events
|
|
15956
15973
|
}
|
|
15957
15974
|
|
|
15958
|
-
;//
|
|
15975
|
+
;// ./node_modules/micromark/lib/create-tokenizer.js
|
|
15959
15976
|
/**
|
|
15960
15977
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
15961
15978
|
* @typedef {import('micromark-util-types').Code} Code
|
|
@@ -16539,7 +16556,7 @@ function serializeChunks(chunks, expandTabs) {
|
|
|
16539
16556
|
return result.join('')
|
|
16540
16557
|
}
|
|
16541
16558
|
|
|
16542
|
-
;//
|
|
16559
|
+
;// ./node_modules/micromark-core-commonmark/lib/thematic-break.js
|
|
16543
16560
|
/**
|
|
16544
16561
|
* @typedef {import('micromark-util-types').Code} Code
|
|
16545
16562
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -16642,7 +16659,7 @@ function tokenizeThematicBreak(effects, ok, nok) {
|
|
|
16642
16659
|
}
|
|
16643
16660
|
}
|
|
16644
16661
|
|
|
16645
|
-
;//
|
|
16662
|
+
;// ./node_modules/micromark-core-commonmark/lib/list.js
|
|
16646
16663
|
/**
|
|
16647
16664
|
* @typedef {import('micromark-util-types').Code} Code
|
|
16648
16665
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -16912,7 +16929,7 @@ function tokenizeListItemPrefixWhitespace(effects, ok, nok) {
|
|
|
16912
16929
|
}
|
|
16913
16930
|
}
|
|
16914
16931
|
|
|
16915
|
-
;//
|
|
16932
|
+
;// ./node_modules/micromark-core-commonmark/lib/block-quote.js
|
|
16916
16933
|
/**
|
|
16917
16934
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
16918
16935
|
* @typedef {import('micromark-util-types').Exiter} Exiter
|
|
@@ -17060,7 +17077,7 @@ function exit(effects) {
|
|
|
17060
17077
|
effects.exit('blockQuote')
|
|
17061
17078
|
}
|
|
17062
17079
|
|
|
17063
|
-
;//
|
|
17080
|
+
;// ./node_modules/micromark-factory-destination/index.js
|
|
17064
17081
|
/**
|
|
17065
17082
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
17066
17083
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17283,7 +17300,7 @@ function factoryDestination(
|
|
|
17283
17300
|
}
|
|
17284
17301
|
}
|
|
17285
17302
|
|
|
17286
|
-
;//
|
|
17303
|
+
;// ./node_modules/micromark-factory-label/index.js
|
|
17287
17304
|
/**
|
|
17288
17305
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
17289
17306
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17444,7 +17461,7 @@ function factoryLabel(effects, ok, nok, type, markerType, stringType) {
|
|
|
17444
17461
|
}
|
|
17445
17462
|
}
|
|
17446
17463
|
|
|
17447
|
-
;//
|
|
17464
|
+
;// ./node_modules/micromark-factory-title/index.js
|
|
17448
17465
|
/**
|
|
17449
17466
|
* @typedef {import('micromark-util-types').Code} Code
|
|
17450
17467
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
@@ -17602,7 +17619,7 @@ function factoryTitle(effects, ok, nok, type, markerType, stringType) {
|
|
|
17602
17619
|
}
|
|
17603
17620
|
}
|
|
17604
17621
|
|
|
17605
|
-
;//
|
|
17622
|
+
;// ./node_modules/micromark-factory-whitespace/index.js
|
|
17606
17623
|
/**
|
|
17607
17624
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
17608
17625
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17653,7 +17670,7 @@ function factoryWhitespace(effects, ok) {
|
|
|
17653
17670
|
}
|
|
17654
17671
|
}
|
|
17655
17672
|
|
|
17656
|
-
;//
|
|
17673
|
+
;// ./node_modules/micromark-util-normalize-identifier/index.js
|
|
17657
17674
|
/**
|
|
17658
17675
|
* Normalize an identifier (as found in references, definitions).
|
|
17659
17676
|
*
|
|
@@ -17691,7 +17708,7 @@ function normalizeIdentifier(value) {
|
|
|
17691
17708
|
)
|
|
17692
17709
|
}
|
|
17693
17710
|
|
|
17694
|
-
;//
|
|
17711
|
+
;// ./node_modules/micromark-core-commonmark/lib/definition.js
|
|
17695
17712
|
/**
|
|
17696
17713
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
17697
17714
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17975,7 +17992,7 @@ function tokenizeTitleBefore(effects, ok, nok) {
|
|
|
17975
17992
|
}
|
|
17976
17993
|
}
|
|
17977
17994
|
|
|
17978
|
-
;//
|
|
17995
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-indented.js
|
|
17979
17996
|
/**
|
|
17980
17997
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
17981
17998
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -18160,7 +18177,7 @@ function tokenizeFurtherStart(effects, ok, nok) {
|
|
|
18160
18177
|
}
|
|
18161
18178
|
}
|
|
18162
18179
|
|
|
18163
|
-
;//
|
|
18180
|
+
;// ./node_modules/micromark-core-commonmark/lib/heading-atx.js
|
|
18164
18181
|
/**
|
|
18165
18182
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
18166
18183
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -18367,7 +18384,7 @@ function tokenizeHeadingAtx(effects, ok, nok) {
|
|
|
18367
18384
|
}
|
|
18368
18385
|
}
|
|
18369
18386
|
|
|
18370
|
-
;//
|
|
18387
|
+
;// ./node_modules/micromark-core-commonmark/lib/setext-underline.js
|
|
18371
18388
|
/**
|
|
18372
18389
|
* @typedef {import('micromark-util-types').Code} Code
|
|
18373
18390
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -18551,7 +18568,7 @@ function tokenizeSetextUnderline(effects, ok, nok) {
|
|
|
18551
18568
|
}
|
|
18552
18569
|
}
|
|
18553
18570
|
|
|
18554
|
-
;//
|
|
18571
|
+
;// ./node_modules/micromark-util-html-tag-name/index.js
|
|
18555
18572
|
/**
|
|
18556
18573
|
* List of lowercase HTML “block” tag names.
|
|
18557
18574
|
*
|
|
@@ -18646,7 +18663,7 @@ const htmlBlockNames = [
|
|
|
18646
18663
|
*/
|
|
18647
18664
|
const htmlRawNames = ['pre', 'script', 'style', 'textarea']
|
|
18648
18665
|
|
|
18649
|
-
;//
|
|
18666
|
+
;// ./node_modules/micromark-core-commonmark/lib/html-flow.js
|
|
18650
18667
|
/**
|
|
18651
18668
|
* @typedef {import('micromark-util-types').Code} Code
|
|
18652
18669
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -19558,7 +19575,7 @@ function tokenizeBlankLineBefore(effects, ok, nok) {
|
|
|
19558
19575
|
}
|
|
19559
19576
|
}
|
|
19560
19577
|
|
|
19561
|
-
;//
|
|
19578
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-fenced.js
|
|
19562
19579
|
/**
|
|
19563
19580
|
* @typedef {import('micromark-util-types').Code} Code
|
|
19564
19581
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -20040,7 +20057,7 @@ function tokenizeNonLazyContinuation(effects, ok, nok) {
|
|
|
20040
20057
|
}
|
|
20041
20058
|
}
|
|
20042
20059
|
|
|
20043
|
-
;//
|
|
20060
|
+
;// ./node_modules/decode-named-character-reference/index.dom.js
|
|
20044
20061
|
/// <reference lib="dom" />
|
|
20045
20062
|
|
|
20046
20063
|
/* eslint-env browser */
|
|
@@ -20075,7 +20092,7 @@ function decodeNamedCharacterReference(value) {
|
|
|
20075
20092
|
return char === characterReference ? false : char
|
|
20076
20093
|
}
|
|
20077
20094
|
|
|
20078
|
-
;//
|
|
20095
|
+
;// ./node_modules/micromark-core-commonmark/lib/character-reference.js
|
|
20079
20096
|
/**
|
|
20080
20097
|
* @typedef {import('micromark-util-types').Code} Code
|
|
20081
20098
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -20226,7 +20243,7 @@ function tokenizeCharacterReference(effects, ok, nok) {
|
|
|
20226
20243
|
}
|
|
20227
20244
|
}
|
|
20228
20245
|
|
|
20229
|
-
;//
|
|
20246
|
+
;// ./node_modules/micromark-core-commonmark/lib/character-escape.js
|
|
20230
20247
|
/**
|
|
20231
20248
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
20232
20249
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -20289,7 +20306,7 @@ function tokenizeCharacterEscape(effects, ok, nok) {
|
|
|
20289
20306
|
}
|
|
20290
20307
|
}
|
|
20291
20308
|
|
|
20292
|
-
;//
|
|
20309
|
+
;// ./node_modules/micromark-core-commonmark/lib/line-ending.js
|
|
20293
20310
|
/**
|
|
20294
20311
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
20295
20312
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -20321,7 +20338,7 @@ function tokenizeLineEnding(effects, ok) {
|
|
|
20321
20338
|
}
|
|
20322
20339
|
}
|
|
20323
20340
|
|
|
20324
|
-
;//
|
|
20341
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-end.js
|
|
20325
20342
|
/**
|
|
20326
20343
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
20327
20344
|
* @typedef {import('micromark-util-types').Event} Event
|
|
@@ -20940,7 +20957,7 @@ function tokenizeReferenceCollapsed(effects, ok, nok) {
|
|
|
20940
20957
|
}
|
|
20941
20958
|
}
|
|
20942
20959
|
|
|
20943
|
-
;//
|
|
20960
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-start-image.js
|
|
20944
20961
|
/**
|
|
20945
20962
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
20946
20963
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -21043,7 +21060,7 @@ function tokenizeLabelStartImage(effects, ok, nok) {
|
|
|
21043
21060
|
}
|
|
21044
21061
|
}
|
|
21045
21062
|
|
|
21046
|
-
;//
|
|
21063
|
+
;// ./node_modules/micromark-util-classify-character/index.js
|
|
21047
21064
|
/**
|
|
21048
21065
|
* @typedef {import('micromark-util-types').Code} Code
|
|
21049
21066
|
*/
|
|
@@ -21076,7 +21093,7 @@ function classifyCharacter(code) {
|
|
|
21076
21093
|
}
|
|
21077
21094
|
}
|
|
21078
21095
|
|
|
21079
|
-
;//
|
|
21096
|
+
;// ./node_modules/micromark-core-commonmark/lib/attention.js
|
|
21080
21097
|
/**
|
|
21081
21098
|
* @typedef {import('micromark-util-types').Code} Code
|
|
21082
21099
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -21341,7 +21358,7 @@ function movePoint(point, offset) {
|
|
|
21341
21358
|
point._bufferIndex += offset
|
|
21342
21359
|
}
|
|
21343
21360
|
|
|
21344
|
-
;//
|
|
21361
|
+
;// ./node_modules/micromark-core-commonmark/lib/autolink.js
|
|
21345
21362
|
/**
|
|
21346
21363
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
21347
21364
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -21573,7 +21590,7 @@ function tokenizeAutolink(effects, ok, nok) {
|
|
|
21573
21590
|
}
|
|
21574
21591
|
}
|
|
21575
21592
|
|
|
21576
|
-
;//
|
|
21593
|
+
;// ./node_modules/micromark-core-commonmark/lib/html-text.js
|
|
21577
21594
|
/**
|
|
21578
21595
|
* @typedef {import('micromark-util-types').Code} Code
|
|
21579
21596
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -22282,7 +22299,7 @@ function tokenizeHtmlText(effects, ok, nok) {
|
|
|
22282
22299
|
}
|
|
22283
22300
|
}
|
|
22284
22301
|
|
|
22285
|
-
;//
|
|
22302
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-start-link.js
|
|
22286
22303
|
/**
|
|
22287
22304
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
22288
22305
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -22338,7 +22355,7 @@ function tokenizeLabelStartLink(effects, ok, nok) {
|
|
|
22338
22355
|
}
|
|
22339
22356
|
}
|
|
22340
22357
|
|
|
22341
|
-
;//
|
|
22358
|
+
;// ./node_modules/micromark-core-commonmark/lib/hard-break-escape.js
|
|
22342
22359
|
/**
|
|
22343
22360
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
22344
22361
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -22397,7 +22414,7 @@ function tokenizeHardBreakEscape(effects, ok, nok) {
|
|
|
22397
22414
|
}
|
|
22398
22415
|
}
|
|
22399
22416
|
|
|
22400
|
-
;//
|
|
22417
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-text.js
|
|
22401
22418
|
/**
|
|
22402
22419
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
22403
22420
|
* @typedef {import('micromark-util-types').Previous} Previous
|
|
@@ -22636,7 +22653,7 @@ function tokenizeCodeText(effects, ok, nok) {
|
|
|
22636
22653
|
}
|
|
22637
22654
|
}
|
|
22638
22655
|
|
|
22639
|
-
;//
|
|
22656
|
+
;// ./node_modules/micromark/lib/constructs.js
|
|
22640
22657
|
/**
|
|
22641
22658
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
22642
22659
|
*/
|
|
@@ -22723,7 +22740,7 @@ const disable = {
|
|
|
22723
22740
|
null: []
|
|
22724
22741
|
}
|
|
22725
22742
|
|
|
22726
|
-
;//
|
|
22743
|
+
;// ./node_modules/micromark/lib/parse.js
|
|
22727
22744
|
/**
|
|
22728
22745
|
* @typedef {import('micromark-util-types').Create} Create
|
|
22729
22746
|
* @typedef {import('micromark-util-types').FullNormalizedExtension} FullNormalizedExtension
|
|
@@ -22775,7 +22792,7 @@ function parse(options) {
|
|
|
22775
22792
|
}
|
|
22776
22793
|
}
|
|
22777
22794
|
|
|
22778
|
-
;//
|
|
22795
|
+
;// ./node_modules/micromark/lib/preprocess.js
|
|
22779
22796
|
/**
|
|
22780
22797
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
22781
22798
|
* @typedef {import('micromark-util-types').Code} Code
|
|
@@ -22890,7 +22907,7 @@ function preprocess() {
|
|
|
22890
22907
|
}
|
|
22891
22908
|
}
|
|
22892
22909
|
|
|
22893
|
-
;//
|
|
22910
|
+
;// ./node_modules/micromark-util-decode-numeric-character-reference/index.js
|
|
22894
22911
|
/**
|
|
22895
22912
|
* Turn the number (in string form as either hexa- or plain decimal) coming from
|
|
22896
22913
|
* a numeric character reference into a character.
|
|
@@ -22923,7 +22940,7 @@ function decodeNumericCharacterReference(value, base) {
|
|
|
22923
22940
|
}
|
|
22924
22941
|
return String.fromCodePoint(code);
|
|
22925
22942
|
}
|
|
22926
|
-
;//
|
|
22943
|
+
;// ./node_modules/micromark-util-decode-string/index.js
|
|
22927
22944
|
|
|
22928
22945
|
|
|
22929
22946
|
const characterEscapeOrReference =
|
|
@@ -22967,7 +22984,7 @@ function decode($0, $1, $2) {
|
|
|
22967
22984
|
return decodeNamedCharacterReference($2) || $0
|
|
22968
22985
|
}
|
|
22969
22986
|
|
|
22970
|
-
;//
|
|
22987
|
+
;// ./node_modules/unist-util-stringify-position/lib/index.js
|
|
22971
22988
|
/**
|
|
22972
22989
|
* @typedef {import('unist').Node} Node
|
|
22973
22990
|
* @typedef {import('unist').Point} Point
|
|
@@ -23053,7 +23070,7 @@ function index(value) {
|
|
|
23053
23070
|
return value && typeof value === 'number' ? value : 1
|
|
23054
23071
|
}
|
|
23055
23072
|
|
|
23056
|
-
;//
|
|
23073
|
+
;// ./node_modules/mdast-util-from-markdown/lib/index.js
|
|
23057
23074
|
/**
|
|
23058
23075
|
* @typedef {import('mdast').Break} Break
|
|
23059
23076
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
@@ -24407,7 +24424,7 @@ function defaultOnError(left, right) {
|
|
|
24407
24424
|
}
|
|
24408
24425
|
}
|
|
24409
24426
|
|
|
24410
|
-
;//
|
|
24427
|
+
;// ./node_modules/remark-parse/lib/index.js
|
|
24411
24428
|
/**
|
|
24412
24429
|
* @typedef {import('mdast').Root} Root
|
|
24413
24430
|
* @typedef {import('mdast-util-from-markdown').Options} FromMarkdownOptions
|
|
@@ -24452,7 +24469,7 @@ function remarkParse(options) {
|
|
|
24452
24469
|
}
|
|
24453
24470
|
}
|
|
24454
24471
|
|
|
24455
|
-
;//
|
|
24472
|
+
;// ./node_modules/zwitch/index.js
|
|
24456
24473
|
/**
|
|
24457
24474
|
* @callback Handler
|
|
24458
24475
|
* Handle a value, with a certain ID field set to a certain value.
|
|
@@ -24572,7 +24589,7 @@ function zwitch(key, options) {
|
|
|
24572
24589
|
return one
|
|
24573
24590
|
}
|
|
24574
24591
|
|
|
24575
|
-
;//
|
|
24592
|
+
;// ./node_modules/mdast-util-to-markdown/lib/configure.js
|
|
24576
24593
|
/**
|
|
24577
24594
|
* @typedef {import('./types.js').Options} Options
|
|
24578
24595
|
* @typedef {import('./types.js').State} State
|
|
@@ -24654,7 +24671,7 @@ function map(left, right) {
|
|
|
24654
24671
|
}
|
|
24655
24672
|
}
|
|
24656
24673
|
|
|
24657
|
-
;//
|
|
24674
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/blockquote.js
|
|
24658
24675
|
/**
|
|
24659
24676
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
24660
24677
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -24688,7 +24705,7 @@ function blockquote_map(line, _, blank) {
|
|
|
24688
24705
|
return '>' + (blank ? '' : ' ') + line
|
|
24689
24706
|
}
|
|
24690
24707
|
|
|
24691
|
-
;//
|
|
24708
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js
|
|
24692
24709
|
/**
|
|
24693
24710
|
* @typedef {import('../types.js').ConstructName} ConstructName
|
|
24694
24711
|
* @typedef {import('../types.js').Unsafe} Unsafe
|
|
@@ -24732,7 +24749,7 @@ function listInScope(stack, list, none) {
|
|
|
24732
24749
|
return false
|
|
24733
24750
|
}
|
|
24734
24751
|
|
|
24735
|
-
;//
|
|
24752
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/break.js
|
|
24736
24753
|
/**
|
|
24737
24754
|
* @typedef {import('mdast').Break} Break
|
|
24738
24755
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -24766,7 +24783,7 @@ function hardBreak(_, _1, state, info) {
|
|
|
24766
24783
|
return '\\\n'
|
|
24767
24784
|
}
|
|
24768
24785
|
|
|
24769
|
-
;//
|
|
24786
|
+
;// ./node_modules/longest-streak/index.js
|
|
24770
24787
|
/**
|
|
24771
24788
|
* Get the count of the longest repeating streak of `substring` in `value`.
|
|
24772
24789
|
*
|
|
@@ -24804,7 +24821,7 @@ function longestStreak(value, substring) {
|
|
|
24804
24821
|
return max
|
|
24805
24822
|
}
|
|
24806
24823
|
|
|
24807
|
-
;//
|
|
24824
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js
|
|
24808
24825
|
/**
|
|
24809
24826
|
* @typedef {import('mdast').Code} Code
|
|
24810
24827
|
* @typedef {import('../types.js').State} State
|
|
@@ -24828,7 +24845,7 @@ function formatCodeAsIndented(node, state) {
|
|
|
24828
24845
|
)
|
|
24829
24846
|
}
|
|
24830
24847
|
|
|
24831
|
-
;//
|
|
24848
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-fence.js
|
|
24832
24849
|
/**
|
|
24833
24850
|
* @typedef {import('../types.js').Options} Options
|
|
24834
24851
|
* @typedef {import('../types.js').State} State
|
|
@@ -24852,7 +24869,7 @@ function checkFence(state) {
|
|
|
24852
24869
|
return marker
|
|
24853
24870
|
}
|
|
24854
24871
|
|
|
24855
|
-
;//
|
|
24872
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/code.js
|
|
24856
24873
|
/**
|
|
24857
24874
|
* @typedef {import('mdast').Code} Code
|
|
24858
24875
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -24932,7 +24949,7 @@ function code_map(line, _, blank) {
|
|
|
24932
24949
|
return (blank ? '' : ' ') + line
|
|
24933
24950
|
}
|
|
24934
24951
|
|
|
24935
|
-
;//
|
|
24952
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-quote.js
|
|
24936
24953
|
/**
|
|
24937
24954
|
* @typedef {import('../types.js').Options} Options
|
|
24938
24955
|
* @typedef {import('../types.js').State} State
|
|
@@ -24956,7 +24973,7 @@ function checkQuote(state) {
|
|
|
24956
24973
|
return marker
|
|
24957
24974
|
}
|
|
24958
24975
|
|
|
24959
|
-
;//
|
|
24976
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/definition.js
|
|
24960
24977
|
/**
|
|
24961
24978
|
* @typedef {import('mdast').Definition} Definition
|
|
24962
24979
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -25036,7 +25053,7 @@ function definition_definition(node, _, state, info) {
|
|
|
25036
25053
|
return value
|
|
25037
25054
|
}
|
|
25038
25055
|
|
|
25039
|
-
;//
|
|
25056
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js
|
|
25040
25057
|
/**
|
|
25041
25058
|
* @typedef {import('../types.js').Options} Options
|
|
25042
25059
|
* @typedef {import('../types.js').State} State
|
|
@@ -25060,7 +25077,7 @@ function checkEmphasis(state) {
|
|
|
25060
25077
|
return marker
|
|
25061
25078
|
}
|
|
25062
25079
|
|
|
25063
|
-
;//
|
|
25080
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/emphasis.js
|
|
25064
25081
|
/**
|
|
25065
25082
|
* @typedef {import('mdast').Emphasis} Emphasis
|
|
25066
25083
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -25110,7 +25127,7 @@ function emphasisPeek(_, _1, state) {
|
|
|
25110
25127
|
return state.options.emphasis || '*'
|
|
25111
25128
|
}
|
|
25112
25129
|
|
|
25113
|
-
;//
|
|
25130
|
+
;// ./node_modules/unist-util-is/lib/index.js
|
|
25114
25131
|
/**
|
|
25115
25132
|
* @typedef {import('unist').Node} Node
|
|
25116
25133
|
* @typedef {import('unist').Parent} Parent
|
|
@@ -25403,7 +25420,7 @@ function looksLikeANode(value) {
|
|
|
25403
25420
|
return value !== null && typeof value === 'object' && 'type' in value
|
|
25404
25421
|
}
|
|
25405
25422
|
|
|
25406
|
-
;//
|
|
25423
|
+
;// ./node_modules/unist-util-visit-parents/lib/color.js
|
|
25407
25424
|
/**
|
|
25408
25425
|
* @param {string} d
|
|
25409
25426
|
* @returns {string}
|
|
@@ -25412,7 +25429,7 @@ function color(d) {
|
|
|
25412
25429
|
return d
|
|
25413
25430
|
}
|
|
25414
25431
|
|
|
25415
|
-
;//
|
|
25432
|
+
;// ./node_modules/unist-util-visit-parents/lib/index.js
|
|
25416
25433
|
/**
|
|
25417
25434
|
* @typedef {import('unist').Node} UnistNode
|
|
25418
25435
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -25812,7 +25829,7 @@ function toResult(value) {
|
|
|
25812
25829
|
return value === null || value === undefined ? empty : [value]
|
|
25813
25830
|
}
|
|
25814
25831
|
|
|
25815
|
-
;//
|
|
25832
|
+
;// ./node_modules/unist-util-visit/lib/index.js
|
|
25816
25833
|
/**
|
|
25817
25834
|
* @typedef {import('unist').Node} UnistNode
|
|
25818
25835
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -26127,7 +26144,7 @@ function visit(tree, testOrVisitor, visitorOrReverse, maybeReverse) {
|
|
|
26127
26144
|
}
|
|
26128
26145
|
}
|
|
26129
26146
|
|
|
26130
|
-
;//
|
|
26147
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js
|
|
26131
26148
|
/**
|
|
26132
26149
|
* @typedef {import('mdast').Heading} Heading
|
|
26133
26150
|
* @typedef {import('../types.js').State} State
|
|
@@ -26163,7 +26180,7 @@ function formatHeadingAsSetext(node, state) {
|
|
|
26163
26180
|
)
|
|
26164
26181
|
}
|
|
26165
26182
|
|
|
26166
|
-
;//
|
|
26183
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/heading.js
|
|
26167
26184
|
/**
|
|
26168
26185
|
* @typedef {import('mdast').Heading} Heading
|
|
26169
26186
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26245,7 +26262,7 @@ function heading(node, _, state, info) {
|
|
|
26245
26262
|
return value
|
|
26246
26263
|
}
|
|
26247
26264
|
|
|
26248
|
-
;//
|
|
26265
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/html.js
|
|
26249
26266
|
/**
|
|
26250
26267
|
* @typedef {import('mdast').Html} Html
|
|
26251
26268
|
*/
|
|
@@ -26267,7 +26284,7 @@ function htmlPeek() {
|
|
|
26267
26284
|
return '<'
|
|
26268
26285
|
}
|
|
26269
26286
|
|
|
26270
|
-
;//
|
|
26287
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/image.js
|
|
26271
26288
|
/**
|
|
26272
26289
|
* @typedef {import('mdast').Image} Image
|
|
26273
26290
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26353,7 +26370,7 @@ function imagePeek() {
|
|
|
26353
26370
|
return '!'
|
|
26354
26371
|
}
|
|
26355
26372
|
|
|
26356
|
-
;//
|
|
26373
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/image-reference.js
|
|
26357
26374
|
/**
|
|
26358
26375
|
* @typedef {import('mdast').ImageReference} ImageReference
|
|
26359
26376
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26420,7 +26437,7 @@ function imageReferencePeek() {
|
|
|
26420
26437
|
return '!'
|
|
26421
26438
|
}
|
|
26422
26439
|
|
|
26423
|
-
;//
|
|
26440
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/inline-code.js
|
|
26424
26441
|
/**
|
|
26425
26442
|
* @typedef {import('mdast').InlineCode} InlineCode
|
|
26426
26443
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26499,7 +26516,7 @@ function inlineCodePeek() {
|
|
|
26499
26516
|
return '`'
|
|
26500
26517
|
}
|
|
26501
26518
|
|
|
26502
|
-
;//
|
|
26519
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js
|
|
26503
26520
|
/**
|
|
26504
26521
|
* @typedef {import('mdast').Link} Link
|
|
26505
26522
|
* @typedef {import('../types.js').State} State
|
|
@@ -26535,7 +26552,7 @@ function formatLinkAsAutolink(node, state) {
|
|
|
26535
26552
|
)
|
|
26536
26553
|
}
|
|
26537
26554
|
|
|
26538
|
-
;//
|
|
26555
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/link.js
|
|
26539
26556
|
/**
|
|
26540
26557
|
* @typedef {import('mdast').Link} Link
|
|
26541
26558
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26653,7 +26670,7 @@ function linkPeek(node, _, state) {
|
|
|
26653
26670
|
return formatLinkAsAutolink(node, state) ? '<' : '['
|
|
26654
26671
|
}
|
|
26655
26672
|
|
|
26656
|
-
;//
|
|
26673
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/link-reference.js
|
|
26657
26674
|
/**
|
|
26658
26675
|
* @typedef {import('mdast').LinkReference} LinkReference
|
|
26659
26676
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26720,7 +26737,7 @@ function linkReferencePeek() {
|
|
|
26720
26737
|
return '['
|
|
26721
26738
|
}
|
|
26722
26739
|
|
|
26723
|
-
;//
|
|
26740
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet.js
|
|
26724
26741
|
/**
|
|
26725
26742
|
* @typedef {import('../types.js').Options} Options
|
|
26726
26743
|
* @typedef {import('../types.js').State} State
|
|
@@ -26744,7 +26761,7 @@ function checkBullet(state) {
|
|
|
26744
26761
|
return marker
|
|
26745
26762
|
}
|
|
26746
26763
|
|
|
26747
|
-
;//
|
|
26764
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js
|
|
26748
26765
|
/**
|
|
26749
26766
|
* @typedef {import('../types.js').Options} Options
|
|
26750
26767
|
* @typedef {import('../types.js').State} State
|
|
@@ -26785,7 +26802,7 @@ function checkBulletOther(state) {
|
|
|
26785
26802
|
return bulletOther
|
|
26786
26803
|
}
|
|
26787
26804
|
|
|
26788
|
-
;//
|
|
26805
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js
|
|
26789
26806
|
/**
|
|
26790
26807
|
* @typedef {import('../types.js').Options} Options
|
|
26791
26808
|
* @typedef {import('../types.js').State} State
|
|
@@ -26809,7 +26826,7 @@ function checkBulletOrdered(state) {
|
|
|
26809
26826
|
return marker
|
|
26810
26827
|
}
|
|
26811
26828
|
|
|
26812
|
-
;//
|
|
26829
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule.js
|
|
26813
26830
|
/**
|
|
26814
26831
|
* @typedef {import('../types.js').Options} Options
|
|
26815
26832
|
* @typedef {import('../types.js').State} State
|
|
@@ -26833,7 +26850,7 @@ function checkRule(state) {
|
|
|
26833
26850
|
return marker
|
|
26834
26851
|
}
|
|
26835
26852
|
|
|
26836
|
-
;//
|
|
26853
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/list.js
|
|
26837
26854
|
/**
|
|
26838
26855
|
* @typedef {import('mdast').List} List
|
|
26839
26856
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26937,7 +26954,7 @@ function list_list(node, parent, state, info) {
|
|
|
26937
26954
|
return value
|
|
26938
26955
|
}
|
|
26939
26956
|
|
|
26940
|
-
;//
|
|
26957
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js
|
|
26941
26958
|
/**
|
|
26942
26959
|
* @typedef {import('../types.js').Options} Options
|
|
26943
26960
|
* @typedef {import('../types.js').State} State
|
|
@@ -26961,7 +26978,7 @@ function checkListItemIndent(state) {
|
|
|
26961
26978
|
return style
|
|
26962
26979
|
}
|
|
26963
26980
|
|
|
26964
|
-
;//
|
|
26981
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/list-item.js
|
|
26965
26982
|
/**
|
|
26966
26983
|
* @typedef {import('mdast').ListItem} ListItem
|
|
26967
26984
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -27028,7 +27045,7 @@ function listItem(node, parent, state, info) {
|
|
|
27028
27045
|
}
|
|
27029
27046
|
}
|
|
27030
27047
|
|
|
27031
|
-
;//
|
|
27048
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
|
|
27032
27049
|
/**
|
|
27033
27050
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
27034
27051
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -27052,7 +27069,7 @@ function paragraph(node, _, state, info) {
|
|
|
27052
27069
|
return value
|
|
27053
27070
|
}
|
|
27054
27071
|
|
|
27055
|
-
;//
|
|
27072
|
+
;// ./node_modules/mdast-util-phrasing/lib/index.js
|
|
27056
27073
|
/**
|
|
27057
27074
|
* @typedef {import('mdast').Html} Html
|
|
27058
27075
|
* @typedef {import('mdast').PhrasingContent} PhrasingContent
|
|
@@ -27099,7 +27116,7 @@ const phrasing =
|
|
|
27099
27116
|
])
|
|
27100
27117
|
)
|
|
27101
27118
|
|
|
27102
|
-
;//
|
|
27119
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/root.js
|
|
27103
27120
|
/**
|
|
27104
27121
|
* @typedef {import('mdast').Parents} Parents
|
|
27105
27122
|
* @typedef {import('mdast').Root} Root
|
|
@@ -27125,7 +27142,7 @@ function root(node, _, state, info) {
|
|
|
27125
27142
|
return fn.call(state, node, info)
|
|
27126
27143
|
}
|
|
27127
27144
|
|
|
27128
|
-
;//
|
|
27145
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-strong.js
|
|
27129
27146
|
/**
|
|
27130
27147
|
* @typedef {import('../types.js').Options} Options
|
|
27131
27148
|
* @typedef {import('../types.js').State} State
|
|
@@ -27149,7 +27166,7 @@ function checkStrong(state) {
|
|
|
27149
27166
|
return marker
|
|
27150
27167
|
}
|
|
27151
27168
|
|
|
27152
|
-
;//
|
|
27169
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/strong.js
|
|
27153
27170
|
/**
|
|
27154
27171
|
* @typedef {import('mdast').Parents} Parents
|
|
27155
27172
|
* @typedef {import('mdast').Strong} Strong
|
|
@@ -27199,7 +27216,7 @@ function strongPeek(_, _1, state) {
|
|
|
27199
27216
|
return state.options.strong || '*'
|
|
27200
27217
|
}
|
|
27201
27218
|
|
|
27202
|
-
;//
|
|
27219
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/text.js
|
|
27203
27220
|
/**
|
|
27204
27221
|
* @typedef {import('mdast').Parents} Parents
|
|
27205
27222
|
* @typedef {import('mdast').Text} Text
|
|
@@ -27218,7 +27235,7 @@ function handle_text_text(node, _, state, info) {
|
|
|
27218
27235
|
return state.safe(node.value, info)
|
|
27219
27236
|
}
|
|
27220
27237
|
|
|
27221
|
-
;//
|
|
27238
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js
|
|
27222
27239
|
/**
|
|
27223
27240
|
* @typedef {import('../types.js').Options} Options
|
|
27224
27241
|
* @typedef {import('../types.js').State} State
|
|
@@ -27242,7 +27259,7 @@ function checkRuleRepetition(state) {
|
|
|
27242
27259
|
return repetition
|
|
27243
27260
|
}
|
|
27244
27261
|
|
|
27245
|
-
;//
|
|
27262
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js
|
|
27246
27263
|
/**
|
|
27247
27264
|
* @typedef {import('mdast').Parents} Parents
|
|
27248
27265
|
* @typedef {import('mdast').ThematicBreak} ThematicBreak
|
|
@@ -27266,7 +27283,7 @@ function thematic_break_thematicBreak(_, _1, state) {
|
|
|
27266
27283
|
return state.options.ruleSpaces ? value.slice(0, -1) : value
|
|
27267
27284
|
}
|
|
27268
27285
|
|
|
27269
|
-
;//
|
|
27286
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/index.js
|
|
27270
27287
|
|
|
27271
27288
|
|
|
27272
27289
|
|
|
@@ -27313,7 +27330,7 @@ const handle = {
|
|
|
27313
27330
|
thematicBreak: thematic_break_thematicBreak
|
|
27314
27331
|
}
|
|
27315
27332
|
|
|
27316
|
-
;//
|
|
27333
|
+
;// ./node_modules/mdast-util-to-markdown/lib/join.js
|
|
27317
27334
|
/**
|
|
27318
27335
|
* @typedef {import('./types.js').Join} Join
|
|
27319
27336
|
*/
|
|
@@ -27354,7 +27371,7 @@ function joinDefaults(left, right, parent, state) {
|
|
|
27354
27371
|
}
|
|
27355
27372
|
}
|
|
27356
27373
|
|
|
27357
|
-
;//
|
|
27374
|
+
;// ./node_modules/mdast-util-to-markdown/lib/unsafe.js
|
|
27358
27375
|
/**
|
|
27359
27376
|
* @typedef {import('./types.js').ConstructName} ConstructName
|
|
27360
27377
|
* @typedef {import('./types.js').Unsafe} Unsafe
|
|
@@ -27503,7 +27520,7 @@ const unsafe = [
|
|
|
27503
27520
|
{atBreak: true, character: '~'}
|
|
27504
27521
|
]
|
|
27505
27522
|
|
|
27506
|
-
;//
|
|
27523
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/association.js
|
|
27507
27524
|
/**
|
|
27508
27525
|
* @typedef {import('../types.js').AssociationId} AssociationId
|
|
27509
27526
|
*/
|
|
@@ -27538,7 +27555,7 @@ function association(node) {
|
|
|
27538
27555
|
return decodeString(node.identifier)
|
|
27539
27556
|
}
|
|
27540
27557
|
|
|
27541
|
-
;//
|
|
27558
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js
|
|
27542
27559
|
/**
|
|
27543
27560
|
* @typedef {import('../types.js').CompilePattern} CompilePattern
|
|
27544
27561
|
*/
|
|
@@ -27564,7 +27581,7 @@ function compilePattern(pattern) {
|
|
|
27564
27581
|
return pattern._compiled
|
|
27565
27582
|
}
|
|
27566
27583
|
|
|
27567
|
-
;//
|
|
27584
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js
|
|
27568
27585
|
/**
|
|
27569
27586
|
* @typedef {import('../types.js').Handle} Handle
|
|
27570
27587
|
* @typedef {import('../types.js').Info} Info
|
|
@@ -27662,7 +27679,7 @@ function containerPhrasing(parent, state, info) {
|
|
|
27662
27679
|
return results.join('')
|
|
27663
27680
|
}
|
|
27664
27681
|
|
|
27665
|
-
;//
|
|
27682
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/container-flow.js
|
|
27666
27683
|
/**
|
|
27667
27684
|
* @typedef {import('../types.js').FlowParents} FlowParents
|
|
27668
27685
|
* @typedef {import('../types.js').FlowChildren} FlowChildren
|
|
@@ -27750,7 +27767,7 @@ function between(left, right, parent, state) {
|
|
|
27750
27767
|
return '\n\n'
|
|
27751
27768
|
}
|
|
27752
27769
|
|
|
27753
|
-
;//
|
|
27770
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/indent-lines.js
|
|
27754
27771
|
/**
|
|
27755
27772
|
* @typedef {import('../types.js').IndentLines} IndentLines
|
|
27756
27773
|
*/
|
|
@@ -27787,7 +27804,7 @@ function indentLines(value, map) {
|
|
|
27787
27804
|
}
|
|
27788
27805
|
}
|
|
27789
27806
|
|
|
27790
|
-
;//
|
|
27807
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/safe.js
|
|
27791
27808
|
/**
|
|
27792
27809
|
* @typedef {import('../types.js').SafeConfig} SafeConfig
|
|
27793
27810
|
* @typedef {import('../types.js').State} State
|
|
@@ -27965,7 +27982,7 @@ function escapeBackslashes(value, after) {
|
|
|
27965
27982
|
return results.join('')
|
|
27966
27983
|
}
|
|
27967
27984
|
|
|
27968
|
-
;//
|
|
27985
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/track.js
|
|
27969
27986
|
/**
|
|
27970
27987
|
* @typedef {import('../types.js').CreateTracker} CreateTracker
|
|
27971
27988
|
* @typedef {import('../types.js').TrackCurrent} TrackCurrent
|
|
@@ -28025,7 +28042,7 @@ function track(config) {
|
|
|
28025
28042
|
}
|
|
28026
28043
|
}
|
|
28027
28044
|
|
|
28028
|
-
;//
|
|
28045
|
+
;// ./node_modules/mdast-util-to-markdown/lib/index.js
|
|
28029
28046
|
/**
|
|
28030
28047
|
* @typedef {import('mdast').Nodes} Nodes
|
|
28031
28048
|
* @typedef {import('./types.js').Enter} Enter
|
|
@@ -28220,7 +28237,7 @@ function safeBound(value, config) {
|
|
|
28220
28237
|
return safe(this, value, config)
|
|
28221
28238
|
}
|
|
28222
28239
|
|
|
28223
|
-
;//
|
|
28240
|
+
;// ./node_modules/remark-stringify/lib/index.js
|
|
28224
28241
|
/**
|
|
28225
28242
|
* @typedef {import('mdast').Root} Root
|
|
28226
28243
|
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownOptions
|
|
@@ -28264,7 +28281,7 @@ function remarkStringify(options) {
|
|
|
28264
28281
|
}
|
|
28265
28282
|
}
|
|
28266
28283
|
|
|
28267
|
-
;//
|
|
28284
|
+
;// ./node_modules/bail/index.js
|
|
28268
28285
|
/**
|
|
28269
28286
|
* Throw a given error.
|
|
28270
28287
|
*
|
|
@@ -28281,7 +28298,7 @@ function bail(error) {
|
|
|
28281
28298
|
// EXTERNAL MODULE: ./node_modules/extend/index.js
|
|
28282
28299
|
var extend = __webpack_require__(2849);
|
|
28283
28300
|
var extend_default = /*#__PURE__*/__webpack_require__.n(extend);
|
|
28284
|
-
;//
|
|
28301
|
+
;// ./node_modules/devlop/lib/default.js
|
|
28285
28302
|
function deprecate(fn) {
|
|
28286
28303
|
return fn
|
|
28287
28304
|
}
|
|
@@ -28292,7 +28309,7 @@ function default_ok() {}
|
|
|
28292
28309
|
|
|
28293
28310
|
function unreachable() {}
|
|
28294
28311
|
|
|
28295
|
-
;//
|
|
28312
|
+
;// ./node_modules/unified/node_modules/is-plain-obj/index.js
|
|
28296
28313
|
function isPlainObject(value) {
|
|
28297
28314
|
if (typeof value !== 'object' || value === null) {
|
|
28298
28315
|
return false;
|
|
@@ -28302,7 +28319,7 @@ function isPlainObject(value) {
|
|
|
28302
28319
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
28303
28320
|
}
|
|
28304
28321
|
|
|
28305
|
-
;//
|
|
28322
|
+
;// ./node_modules/trough/lib/index.js
|
|
28306
28323
|
// To do: remove `void`s
|
|
28307
28324
|
// To do: remove `null` from output of our APIs, allow it as user APIs.
|
|
28308
28325
|
|
|
@@ -28510,7 +28527,7 @@ function wrap(middleware, callback) {
|
|
|
28510
28527
|
}
|
|
28511
28528
|
}
|
|
28512
28529
|
|
|
28513
|
-
;//
|
|
28530
|
+
;// ./node_modules/vfile-message/lib/index.js
|
|
28514
28531
|
/**
|
|
28515
28532
|
* @typedef {import('unist').Node} Node
|
|
28516
28533
|
* @typedef {import('unist').Point} Point
|
|
@@ -28830,7 +28847,7 @@ VFileMessage.prototype.place = undefined
|
|
|
28830
28847
|
VFileMessage.prototype.ruleId = undefined
|
|
28831
28848
|
VFileMessage.prototype.source = undefined
|
|
28832
28849
|
|
|
28833
|
-
;//
|
|
28850
|
+
;// ./node_modules/vfile/lib/minpath.browser.js
|
|
28834
28851
|
// A derivative work based on:
|
|
28835
28852
|
// <https://github.com/browserify/path-browserify>.
|
|
28836
28853
|
// Which is licensed:
|
|
@@ -29254,7 +29271,7 @@ function assertPath(path) {
|
|
|
29254
29271
|
|
|
29255
29272
|
/* eslint-enable max-depth, complexity */
|
|
29256
29273
|
|
|
29257
|
-
;//
|
|
29274
|
+
;// ./node_modules/vfile/lib/minproc.browser.js
|
|
29258
29275
|
// Somewhat based on:
|
|
29259
29276
|
// <https://github.com/defunctzombie/node-process/blob/master/browser.js>.
|
|
29260
29277
|
// But I don’t think one tiny line of code can be copyrighted. 😅
|
|
@@ -29264,7 +29281,7 @@ function cwd() {
|
|
|
29264
29281
|
return '/'
|
|
29265
29282
|
}
|
|
29266
29283
|
|
|
29267
|
-
;//
|
|
29284
|
+
;// ./node_modules/vfile/lib/minurl.shared.js
|
|
29268
29285
|
/**
|
|
29269
29286
|
* Checks if a value has the shape of a WHATWG URL object.
|
|
29270
29287
|
*
|
|
@@ -29297,7 +29314,7 @@ function isUrl(fileUrlOrPath) {
|
|
|
29297
29314
|
)
|
|
29298
29315
|
}
|
|
29299
29316
|
|
|
29300
|
-
;//
|
|
29317
|
+
;// ./node_modules/vfile/lib/minurl.browser.js
|
|
29301
29318
|
|
|
29302
29319
|
|
|
29303
29320
|
|
|
@@ -29375,7 +29392,7 @@ function getPathFromURLPosix(url) {
|
|
|
29375
29392
|
return decodeURIComponent(pathname)
|
|
29376
29393
|
}
|
|
29377
29394
|
|
|
29378
|
-
;//
|
|
29395
|
+
;// ./node_modules/vfile/lib/index.js
|
|
29379
29396
|
/**
|
|
29380
29397
|
* @typedef {import('unist').Node} Node
|
|
29381
29398
|
* @typedef {import('unist').Point} Point
|
|
@@ -30080,7 +30097,7 @@ function isUint8Array(value) {
|
|
|
30080
30097
|
)
|
|
30081
30098
|
}
|
|
30082
30099
|
|
|
30083
|
-
;//
|
|
30100
|
+
;// ./node_modules/unified/lib/callable-instance.js
|
|
30084
30101
|
const CallableInstance =
|
|
30085
30102
|
/**
|
|
30086
30103
|
* @type {new <Parameters extends Array<unknown>, Result>(property: string | symbol) => (...parameters: Parameters) => Result}
|
|
@@ -30121,7 +30138,7 @@ const CallableInstance =
|
|
|
30121
30138
|
)
|
|
30122
30139
|
)
|
|
30123
30140
|
|
|
30124
|
-
;//
|
|
30141
|
+
;// ./node_modules/unified/lib/index.js
|
|
30125
30142
|
/**
|
|
30126
30143
|
* @typedef {import('trough').Pipeline} Pipeline
|
|
30127
30144
|
*
|
|
@@ -31446,7 +31463,7 @@ function lib_isUint8Array(value) {
|
|
|
31446
31463
|
)
|
|
31447
31464
|
}
|
|
31448
31465
|
|
|
31449
|
-
;//
|
|
31466
|
+
;// ./node_modules/remark/index.js
|
|
31450
31467
|
// Note: types exposed from `index.d.ts`
|
|
31451
31468
|
|
|
31452
31469
|
|
|
@@ -31458,7 +31475,7 @@ function lib_isUint8Array(value) {
|
|
|
31458
31475
|
*/
|
|
31459
31476
|
const remark = unified().use(remarkParse).use(remarkStringify).freeze()
|
|
31460
31477
|
|
|
31461
|
-
;//
|
|
31478
|
+
;// ./node_modules/mdast-util-mdx-expression/lib/index.js
|
|
31462
31479
|
/**
|
|
31463
31480
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
31464
31481
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -31571,7 +31588,7 @@ function handleMdxExpression(node) {
|
|
|
31571
31588
|
return '{' + value + '}'
|
|
31572
31589
|
}
|
|
31573
31590
|
|
|
31574
|
-
;//
|
|
31591
|
+
;// ./node_modules/ccount/index.js
|
|
31575
31592
|
/**
|
|
31576
31593
|
* Count how often a character (or substring) is used in a string.
|
|
31577
31594
|
*
|
|
@@ -31600,7 +31617,7 @@ function ccount(value, character) {
|
|
|
31600
31617
|
return count
|
|
31601
31618
|
}
|
|
31602
31619
|
|
|
31603
|
-
;//
|
|
31620
|
+
;// ./node_modules/character-entities-legacy/index.js
|
|
31604
31621
|
/**
|
|
31605
31622
|
* List of legacy HTML named character references that don’t need a trailing semicolon.
|
|
31606
31623
|
*
|
|
@@ -31715,7 +31732,7 @@ const characterEntitiesLegacy = [
|
|
|
31715
31732
|
'yuml'
|
|
31716
31733
|
]
|
|
31717
31734
|
|
|
31718
|
-
;//
|
|
31735
|
+
;// ./node_modules/character-reference-invalid/index.js
|
|
31719
31736
|
/**
|
|
31720
31737
|
* Map of invalid numeric character references to their replacements, according to HTML.
|
|
31721
31738
|
*
|
|
@@ -31752,7 +31769,7 @@ const characterReferenceInvalid = {
|
|
|
31752
31769
|
159: 'Ÿ'
|
|
31753
31770
|
}
|
|
31754
31771
|
|
|
31755
|
-
;//
|
|
31772
|
+
;// ./node_modules/is-decimal/index.js
|
|
31756
31773
|
/**
|
|
31757
31774
|
* Check if the given character code, or the character code at the first
|
|
31758
31775
|
* character, is decimal.
|
|
@@ -31767,7 +31784,7 @@ function isDecimal(character) {
|
|
|
31767
31784
|
return code >= 48 && code <= 57 /* 0-9 */
|
|
31768
31785
|
}
|
|
31769
31786
|
|
|
31770
|
-
;//
|
|
31787
|
+
;// ./node_modules/is-hexadecimal/index.js
|
|
31771
31788
|
/**
|
|
31772
31789
|
* Check if the given character code, or the character code at the first
|
|
31773
31790
|
* character, is hexadecimal.
|
|
@@ -31786,7 +31803,7 @@ function isHexadecimal(character) {
|
|
|
31786
31803
|
)
|
|
31787
31804
|
}
|
|
31788
31805
|
|
|
31789
|
-
;//
|
|
31806
|
+
;// ./node_modules/is-alphabetical/index.js
|
|
31790
31807
|
/**
|
|
31791
31808
|
* Check if the given character code, or the character code at the first
|
|
31792
31809
|
* character, is alphabetical.
|
|
@@ -31804,7 +31821,7 @@ function isAlphabetical(character) {
|
|
|
31804
31821
|
)
|
|
31805
31822
|
}
|
|
31806
31823
|
|
|
31807
|
-
;//
|
|
31824
|
+
;// ./node_modules/is-alphanumerical/index.js
|
|
31808
31825
|
|
|
31809
31826
|
|
|
31810
31827
|
|
|
@@ -31819,7 +31836,7 @@ function isAlphanumerical(character) {
|
|
|
31819
31836
|
return isAlphabetical(character) || isDecimal(character)
|
|
31820
31837
|
}
|
|
31821
31838
|
|
|
31822
|
-
;//
|
|
31839
|
+
;// ./node_modules/parse-entities/lib/index.js
|
|
31823
31840
|
/**
|
|
31824
31841
|
* @typedef {import('unist').Point} Point
|
|
31825
31842
|
* @typedef {import('unist').Position} Position
|
|
@@ -32227,7 +32244,7 @@ function disallowed(code) {
|
|
|
32227
32244
|
)
|
|
32228
32245
|
}
|
|
32229
32246
|
|
|
32230
|
-
;//
|
|
32247
|
+
;// ./node_modules/stringify-entities/lib/core.js
|
|
32231
32248
|
/**
|
|
32232
32249
|
* @typedef CoreOptions
|
|
32233
32250
|
* @property {ReadonlyArray<string>} [subset=[]]
|
|
@@ -32346,7 +32363,7 @@ function charactersToExpression(subset) {
|
|
|
32346
32363
|
return new RegExp('(?:' + groups.join('|') + ')', 'g')
|
|
32347
32364
|
}
|
|
32348
32365
|
|
|
32349
|
-
;//
|
|
32366
|
+
;// ./node_modules/stringify-entities/lib/util/format-basic.js
|
|
32350
32367
|
/**
|
|
32351
32368
|
* The smallest way to encode a character.
|
|
32352
32369
|
*
|
|
@@ -32357,7 +32374,7 @@ function formatBasic(code) {
|
|
|
32357
32374
|
return '&#x' + code.toString(16).toUpperCase() + ';'
|
|
32358
32375
|
}
|
|
32359
32376
|
|
|
32360
|
-
;//
|
|
32377
|
+
;// ./node_modules/stringify-entities/lib/index.js
|
|
32361
32378
|
/**
|
|
32362
32379
|
* @typedef {import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions} Options
|
|
32363
32380
|
* @typedef {import('./core.js').CoreOptions} LightOptions
|
|
@@ -32395,7 +32412,7 @@ function stringifyEntitiesLight(value, options) {
|
|
|
32395
32412
|
return core_core(value, Object.assign({format: formatBasic}, options))
|
|
32396
32413
|
}
|
|
32397
32414
|
|
|
32398
|
-
;//
|
|
32415
|
+
;// ./node_modules/mdast-util-mdx-jsx/lib/index.js
|
|
32399
32416
|
/**
|
|
32400
32417
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
32401
32418
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -33195,7 +33212,7 @@ function peekElement() {
|
|
|
33195
33212
|
return '<'
|
|
33196
33213
|
}
|
|
33197
33214
|
|
|
33198
|
-
;//
|
|
33215
|
+
;// ./node_modules/mdast-util-mdxjs-esm/lib/index.js
|
|
33199
33216
|
/**
|
|
33200
33217
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
33201
33218
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -33284,7 +33301,7 @@ function handleMdxjsEsm(node) {
|
|
|
33284
33301
|
return node.value || ''
|
|
33285
33302
|
}
|
|
33286
33303
|
|
|
33287
|
-
;//
|
|
33304
|
+
;// ./node_modules/mdast-util-mdx/lib/index.js
|
|
33288
33305
|
/**
|
|
33289
33306
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
33290
33307
|
* @typedef {import('mdast-util-mdx-jsx').ToMarkdownOptions} ToMarkdownOptions
|
|
@@ -33334,7 +33351,7 @@ function mdxToMarkdown(options) {
|
|
|
33334
33351
|
}
|
|
33335
33352
|
}
|
|
33336
33353
|
|
|
33337
|
-
;//
|
|
33354
|
+
;// ./node_modules/acorn/dist/acorn.mjs
|
|
33338
33355
|
// This file was generated. Do not modify manually!
|
|
33339
33356
|
var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 81, 2, 71, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 3, 0, 158, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 10, 1, 2, 0, 49, 6, 4, 4, 14, 9, 5351, 0, 7, 14, 13835, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 101, 0, 161, 6, 10, 9, 357, 0, 62, 13, 499, 13, 983, 6, 110, 6, 6, 9, 4759, 9, 787719, 239];
|
|
33340
33357
|
|
|
@@ -39375,7 +39392,7 @@ function tokenizer(input, options) {
|
|
|
39375
39392
|
// EXTERNAL MODULE: ./node_modules/acorn-jsx/index.js
|
|
39376
39393
|
var acorn_jsx = __webpack_require__(9214);
|
|
39377
39394
|
var acorn_jsx_default = /*#__PURE__*/__webpack_require__.n(acorn_jsx);
|
|
39378
|
-
;//
|
|
39395
|
+
;// ./node_modules/estree-util-visit/lib/color.default.js
|
|
39379
39396
|
/**
|
|
39380
39397
|
* @param {string} d
|
|
39381
39398
|
* @returns {string}
|
|
@@ -39384,7 +39401,7 @@ function color_default_color(d) {
|
|
|
39384
39401
|
return d
|
|
39385
39402
|
}
|
|
39386
39403
|
|
|
39387
|
-
;//
|
|
39404
|
+
;// ./node_modules/estree-util-visit/lib/index.js
|
|
39388
39405
|
/**
|
|
39389
39406
|
* @typedef {import('estree-jsx').Node} Node
|
|
39390
39407
|
*/
|
|
@@ -39615,7 +39632,7 @@ function nodelike(value) {
|
|
|
39615
39632
|
)
|
|
39616
39633
|
}
|
|
39617
39634
|
|
|
39618
|
-
;//
|
|
39635
|
+
;// ./node_modules/micromark-util-events-to-acorn/index.js
|
|
39619
39636
|
/**
|
|
39620
39637
|
* @typedef {import('acorn').Comment} Comment
|
|
39621
39638
|
* @typedef {import('acorn').Node} AcornNode
|
|
@@ -40035,7 +40052,7 @@ function micromark_util_events_to_acorn_serializeChunks(chunks) {
|
|
|
40035
40052
|
}
|
|
40036
40053
|
return result.join('');
|
|
40037
40054
|
}
|
|
40038
|
-
;//
|
|
40055
|
+
;// ./node_modules/unist-util-position-from-estree/lib/index.js
|
|
40039
40056
|
/**
|
|
40040
40057
|
* @typedef {import('unist').Point} UnistPoint
|
|
40041
40058
|
* @typedef {import('unist').Position} UnistPosition
|
|
@@ -40114,7 +40131,7 @@ function numberOrUndefined(value) {
|
|
|
40114
40131
|
return typeof value === 'number' && value > -1 ? value : undefined
|
|
40115
40132
|
}
|
|
40116
40133
|
|
|
40117
|
-
;//
|
|
40134
|
+
;// ./node_modules/micromark-factory-mdx-expression/index.js
|
|
40118
40135
|
/**
|
|
40119
40136
|
* @typedef {import('estree').Program} Program
|
|
40120
40137
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
@@ -40496,7 +40513,7 @@ function mdxExpressionParse(
|
|
|
40496
40513
|
}
|
|
40497
40514
|
}
|
|
40498
40515
|
|
|
40499
|
-
;//
|
|
40516
|
+
;// ./node_modules/micromark-extension-mdx-expression/lib/syntax.js
|
|
40500
40517
|
/**
|
|
40501
40518
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
40502
40519
|
* @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
|
|
@@ -40724,7 +40741,7 @@ function mdxExpression(options) {
|
|
|
40724
40741
|
}
|
|
40725
40742
|
}
|
|
40726
40743
|
}
|
|
40727
|
-
;//
|
|
40744
|
+
;// ./node_modules/estree-util-is-identifier-name/lib/index.js
|
|
40728
40745
|
/**
|
|
40729
40746
|
* @typedef Options
|
|
40730
40747
|
* Configuration.
|
|
@@ -40787,7 +40804,7 @@ function lib_name(name, options) {
|
|
|
40787
40804
|
return re.test(name)
|
|
40788
40805
|
}
|
|
40789
40806
|
|
|
40790
|
-
;//
|
|
40807
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/factory-tag.js
|
|
40791
40808
|
/**
|
|
40792
40809
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
40793
40810
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -41612,7 +41629,7 @@ function factoryTag(effects, ok, nok, acorn, acornOptions, addResult, allowLazy,
|
|
|
41612
41629
|
function serializeCharCode(code) {
|
|
41613
41630
|
return 'U+' + code.toString(16).toUpperCase().padStart(4, '0');
|
|
41614
41631
|
}
|
|
41615
|
-
;//
|
|
41632
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-text.js
|
|
41616
41633
|
/**
|
|
41617
41634
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
41618
41635
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -41663,7 +41680,7 @@ function jsxText(acorn, options) {
|
|
|
41663
41680
|
return factoryTag.call(this, effects, ok, nok, acorn, options.acornOptions, options.addResult, true, 'mdxJsxTextTag', 'mdxJsxTextTagMarker', 'mdxJsxTextTagClosingMarker', 'mdxJsxTextTagSelfClosingMarker', 'mdxJsxTextTagName', 'mdxJsxTextTagNamePrimary', 'mdxJsxTextTagNameMemberMarker', 'mdxJsxTextTagNameMember', 'mdxJsxTextTagNamePrefixMarker', 'mdxJsxTextTagNameLocal', 'mdxJsxTextTagExpressionAttribute', 'mdxJsxTextTagExpressionAttributeMarker', 'mdxJsxTextTagExpressionAttributeValue', 'mdxJsxTextTagAttribute', 'mdxJsxTextTagAttributeName', 'mdxJsxTextTagAttributeNamePrimary', 'mdxJsxTextTagAttributeNamePrefixMarker', 'mdxJsxTextTagAttributeNameLocal', 'mdxJsxTextTagAttributeInitializerMarker', 'mdxJsxTextTagAttributeValueLiteral', 'mdxJsxTextTagAttributeValueLiteralMarker', 'mdxJsxTextTagAttributeValueLiteralValue', 'mdxJsxTextTagAttributeValueExpression', 'mdxJsxTextTagAttributeValueExpressionMarker', 'mdxJsxTextTagAttributeValueExpressionValue');
|
|
41664
41681
|
}
|
|
41665
41682
|
}
|
|
41666
|
-
;//
|
|
41683
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-flow.js
|
|
41667
41684
|
/**
|
|
41668
41685
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
41669
41686
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -41789,7 +41806,7 @@ function jsxFlow(acorn, options) {
|
|
|
41789
41806
|
}
|
|
41790
41807
|
}
|
|
41791
41808
|
}
|
|
41792
|
-
;//
|
|
41809
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/syntax.js
|
|
41793
41810
|
/**
|
|
41794
41811
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
41795
41812
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
@@ -41854,7 +41871,7 @@ function mdxJsx(options) {
|
|
|
41854
41871
|
}
|
|
41855
41872
|
};
|
|
41856
41873
|
}
|
|
41857
|
-
;//
|
|
41874
|
+
;// ./node_modules/micromark-extension-mdx-md/index.js
|
|
41858
41875
|
/**
|
|
41859
41876
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
41860
41877
|
*/
|
|
@@ -41873,7 +41890,7 @@ function mdxMd() {
|
|
|
41873
41890
|
}
|
|
41874
41891
|
}
|
|
41875
41892
|
|
|
41876
|
-
;//
|
|
41893
|
+
;// ./node_modules/micromark-extension-mdxjs-esm/lib/syntax.js
|
|
41877
41894
|
/**
|
|
41878
41895
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
41879
41896
|
* @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
|
|
@@ -42141,7 +42158,7 @@ function tokenizeNextBlank(effects, ok, nok) {
|
|
|
42141
42158
|
return effects.attempt(blankLine, ok, nok);
|
|
42142
42159
|
}
|
|
42143
42160
|
}
|
|
42144
|
-
;//
|
|
42161
|
+
;// ./node_modules/micromark-extension-mdxjs/index.js
|
|
42145
42162
|
/**
|
|
42146
42163
|
* @typedef {import('micromark-extension-mdx-expression').Options} Options
|
|
42147
42164
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -42182,7 +42199,7 @@ function mdxjs(options) {
|
|
|
42182
42199
|
])
|
|
42183
42200
|
}
|
|
42184
42201
|
|
|
42185
|
-
;//
|
|
42202
|
+
;// ./node_modules/remark-mdx/lib/index.js
|
|
42186
42203
|
/**
|
|
42187
42204
|
* @typedef {import('mdast-util-mdx').ToMarkdownOptions} ToMarkdownOptions
|
|
42188
42205
|
* @typedef {import('micromark-extension-mdxjs').Options} MicromarkOptions
|
|
@@ -42231,7 +42248,7 @@ function remarkMdx(options) {
|
|
|
42231
42248
|
// EXTERNAL MODULE: ./node_modules/format/format.js
|
|
42232
42249
|
var format_format = __webpack_require__(6311);
|
|
42233
42250
|
var format_default = /*#__PURE__*/__webpack_require__.n(format_format);
|
|
42234
|
-
;//
|
|
42251
|
+
;// ./node_modules/fault/index.js
|
|
42235
42252
|
// @ts-expect-error
|
|
42236
42253
|
|
|
42237
42254
|
|
|
@@ -42274,7 +42291,7 @@ function create(Constructor) {
|
|
|
42274
42291
|
}
|
|
42275
42292
|
}
|
|
42276
42293
|
|
|
42277
|
-
;//
|
|
42294
|
+
;// ./node_modules/micromark-extension-frontmatter/lib/to-matters.js
|
|
42278
42295
|
/**
|
|
42279
42296
|
* @typedef {'toml' | 'yaml'} Preset
|
|
42280
42297
|
* Known name of a frontmatter style.
|
|
@@ -42400,7 +42417,7 @@ function matter(option) {
|
|
|
42400
42417
|
return result
|
|
42401
42418
|
}
|
|
42402
42419
|
|
|
42403
|
-
;//
|
|
42420
|
+
;// ./node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp/index.js
|
|
42404
42421
|
function escapeStringRegexp(string) {
|
|
42405
42422
|
if (typeof string !== 'string') {
|
|
42406
42423
|
throw new TypeError('Expected a string');
|
|
@@ -42413,7 +42430,7 @@ function escapeStringRegexp(string) {
|
|
|
42413
42430
|
.replace(/-/g, '\\x2d');
|
|
42414
42431
|
}
|
|
42415
42432
|
|
|
42416
|
-
;//
|
|
42433
|
+
;// ./node_modules/mdast-util-frontmatter/lib/index.js
|
|
42417
42434
|
/**
|
|
42418
42435
|
* @typedef {import('mdast').Literal} Literal
|
|
42419
42436
|
*
|
|
@@ -42591,7 +42608,7 @@ function pick(schema, prop) {
|
|
|
42591
42608
|
return typeof schema === 'string' ? schema : schema[prop]
|
|
42592
42609
|
}
|
|
42593
42610
|
|
|
42594
|
-
;//
|
|
42611
|
+
;// ./node_modules/micromark-extension-frontmatter/lib/syntax.js
|
|
42595
42612
|
/**
|
|
42596
42613
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
42597
42614
|
* @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
|
|
@@ -42987,7 +43004,7 @@ function syntax_pick(schema, prop) {
|
|
|
42987
43004
|
return typeof schema === 'string' ? schema : schema[prop]
|
|
42988
43005
|
}
|
|
42989
43006
|
|
|
42990
|
-
;//
|
|
43007
|
+
;// ./node_modules/remark-frontmatter/lib/index.js
|
|
42991
43008
|
/// <reference types="remark-parse" />
|
|
42992
43009
|
/// <reference types="remark-stringify" />
|
|
42993
43010
|
|
|
@@ -43034,7 +43051,7 @@ function remarkFrontmatter(options) {
|
|
|
43034
43051
|
toMarkdownExtensions.push(frontmatterToMarkdown(settings))
|
|
43035
43052
|
}
|
|
43036
43053
|
|
|
43037
|
-
;//
|
|
43054
|
+
;// ./node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js
|
|
43038
43055
|
function escape_string_regexp_escapeStringRegexp(string) {
|
|
43039
43056
|
if (typeof string !== 'string') {
|
|
43040
43057
|
throw new TypeError('Expected a string');
|
|
@@ -43047,7 +43064,7 @@ function escape_string_regexp_escapeStringRegexp(string) {
|
|
|
43047
43064
|
.replace(/-/g, '\\x2d');
|
|
43048
43065
|
}
|
|
43049
43066
|
|
|
43050
|
-
;//
|
|
43067
|
+
;// ./node_modules/mdast-util-find-and-replace/lib/index.js
|
|
43051
43068
|
/**
|
|
43052
43069
|
* @typedef {import('mdast').Nodes} Nodes
|
|
43053
43070
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -43315,7 +43332,7 @@ function toFunction(replace) {
|
|
|
43315
43332
|
}
|
|
43316
43333
|
}
|
|
43317
43334
|
|
|
43318
|
-
;//
|
|
43335
|
+
;// ./node_modules/mdast-util-gfm-autolink-literal/lib/index.js
|
|
43319
43336
|
/**
|
|
43320
43337
|
* @typedef {import('mdast').Link} Link
|
|
43321
43338
|
* @typedef {import('mdast').PhrasingContent} PhrasingContent
|
|
@@ -43605,7 +43622,7 @@ function lib_previous(match, email) {
|
|
|
43605
43622
|
)
|
|
43606
43623
|
}
|
|
43607
43624
|
|
|
43608
|
-
;//
|
|
43625
|
+
;// ./node_modules/mdast-util-gfm-footnote/lib/index.js
|
|
43609
43626
|
/**
|
|
43610
43627
|
* @typedef {import('mdast').FootnoteDefinition} FootnoteDefinition
|
|
43611
43628
|
* @typedef {import('mdast').FootnoteReference} FootnoteReference
|
|
@@ -43805,7 +43822,7 @@ function lib_map(line, index, blank) {
|
|
|
43805
43822
|
return (blank ? '' : ' ') + line
|
|
43806
43823
|
}
|
|
43807
43824
|
|
|
43808
|
-
;//
|
|
43825
|
+
;// ./node_modules/mdast-util-gfm-strikethrough/lib/index.js
|
|
43809
43826
|
/**
|
|
43810
43827
|
* @typedef {import('mdast').Delete} Delete
|
|
43811
43828
|
*
|
|
@@ -43913,7 +43930,7 @@ function peekDelete() {
|
|
|
43913
43930
|
return '~'
|
|
43914
43931
|
}
|
|
43915
43932
|
|
|
43916
|
-
;//
|
|
43933
|
+
;// ./node_modules/markdown-table/index.js
|
|
43917
43934
|
/**
|
|
43918
43935
|
* @typedef Options
|
|
43919
43936
|
* Configuration (optional).
|
|
@@ -44295,7 +44312,7 @@ function toAlignment(value) {
|
|
|
44295
44312
|
: 0
|
|
44296
44313
|
}
|
|
44297
44314
|
|
|
44298
|
-
;//
|
|
44315
|
+
;// ./node_modules/mdast-util-gfm-table/lib/index.js
|
|
44299
44316
|
/**
|
|
44300
44317
|
* @typedef {import('mdast').InlineCode} InlineCode
|
|
44301
44318
|
* @typedef {import('mdast').Table} Table
|
|
@@ -44597,7 +44614,7 @@ function gfmTableToMarkdown(options) {
|
|
|
44597
44614
|
}
|
|
44598
44615
|
}
|
|
44599
44616
|
|
|
44600
|
-
;//
|
|
44617
|
+
;// ./node_modules/mdast-util-gfm-task-list-item/lib/index.js
|
|
44601
44618
|
/**
|
|
44602
44619
|
* @typedef {import('mdast').ListItem} ListItem
|
|
44603
44620
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
@@ -44740,7 +44757,7 @@ function listItemWithTaskListItem(node, parent, state, info) {
|
|
|
44740
44757
|
}
|
|
44741
44758
|
}
|
|
44742
44759
|
|
|
44743
|
-
;//
|
|
44760
|
+
;// ./node_modules/mdast-util-gfm/lib/index.js
|
|
44744
44761
|
/**
|
|
44745
44762
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
44746
44763
|
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownExtension
|
|
@@ -44797,7 +44814,7 @@ function gfmToMarkdown(options) {
|
|
|
44797
44814
|
}
|
|
44798
44815
|
}
|
|
44799
44816
|
|
|
44800
|
-
;//
|
|
44817
|
+
;// ./node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js
|
|
44801
44818
|
/**
|
|
44802
44819
|
* @typedef {import('micromark-util-types').Code} Code
|
|
44803
44820
|
* @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
|
|
@@ -45749,7 +45766,7 @@ function previousUnbalanced(events) {
|
|
|
45749
45766
|
return result
|
|
45750
45767
|
}
|
|
45751
45768
|
|
|
45752
|
-
;//
|
|
45769
|
+
;// ./node_modules/micromark-extension-gfm-footnote/lib/syntax.js
|
|
45753
45770
|
/**
|
|
45754
45771
|
* @typedef {import('micromark-util-types').Event} Event
|
|
45755
45772
|
* @typedef {import('micromark-util-types').Exiter} Exiter
|
|
@@ -46280,7 +46297,7 @@ function syntax_tokenizeIndent(effects, ok, nok) {
|
|
|
46280
46297
|
}
|
|
46281
46298
|
}
|
|
46282
46299
|
|
|
46283
|
-
;//
|
|
46300
|
+
;// ./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js
|
|
46284
46301
|
/**
|
|
46285
46302
|
* @typedef {import('micromark-util-types').Event} Event
|
|
46286
46303
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -46463,7 +46480,7 @@ function gfmStrikethrough(options) {
|
|
|
46463
46480
|
}
|
|
46464
46481
|
}
|
|
46465
46482
|
|
|
46466
|
-
;//
|
|
46483
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/edit-map.js
|
|
46467
46484
|
/**
|
|
46468
46485
|
* @typedef {import('micromark-util-types').Event} Event
|
|
46469
46486
|
*/
|
|
@@ -46668,7 +46685,7 @@ function addImpl(editMap, at, remove, add) {
|
|
|
46668
46685
|
// }
|
|
46669
46686
|
// }
|
|
46670
46687
|
|
|
46671
|
-
;//
|
|
46688
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/infer.js
|
|
46672
46689
|
/**
|
|
46673
46690
|
* @typedef {import('micromark-util-types').Event} Event
|
|
46674
46691
|
*/
|
|
@@ -46726,7 +46743,7 @@ function gfmTableAlign(events, index) {
|
|
|
46726
46743
|
return align
|
|
46727
46744
|
}
|
|
46728
46745
|
|
|
46729
|
-
;//
|
|
46746
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/syntax.js
|
|
46730
46747
|
/**
|
|
46731
46748
|
* @typedef {import('micromark-util-types').Event} Event
|
|
46732
46749
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -47607,7 +47624,7 @@ function getPoint(events, index) {
|
|
|
47607
47624
|
return event[1][side]
|
|
47608
47625
|
}
|
|
47609
47626
|
|
|
47610
|
-
;//
|
|
47627
|
+
;// ./node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js
|
|
47611
47628
|
/**
|
|
47612
47629
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
47613
47630
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -47774,7 +47791,7 @@ function spaceThenNonSpace(effects, ok, nok) {
|
|
|
47774
47791
|
}
|
|
47775
47792
|
}
|
|
47776
47793
|
|
|
47777
|
-
;//
|
|
47794
|
+
;// ./node_modules/micromark-extension-gfm/index.js
|
|
47778
47795
|
/**
|
|
47779
47796
|
* @typedef {import('micromark-extension-gfm-footnote').HtmlOptions} HtmlOptions
|
|
47780
47797
|
* @typedef {import('micromark-extension-gfm-strikethrough').Options} Options
|
|
@@ -47833,7 +47850,7 @@ function gfmHtml(options) {
|
|
|
47833
47850
|
])
|
|
47834
47851
|
}
|
|
47835
47852
|
|
|
47836
|
-
;//
|
|
47853
|
+
;// ./node_modules/remark-gfm/lib/index.js
|
|
47837
47854
|
/// <reference types="remark-parse" />
|
|
47838
47855
|
/// <reference types="remark-stringify" />
|
|
47839
47856
|
|
|
@@ -47883,13 +47900,13 @@ function remarkGfm(options) {
|
|
|
47883
47900
|
toMarkdownExtensions.push(gfmToMarkdown(settings))
|
|
47884
47901
|
}
|
|
47885
47902
|
|
|
47886
|
-
;//
|
|
47903
|
+
;// ./node_modules/emoji-regex/index.mjs
|
|
47887
47904
|
/* harmony default export */ const emoji_regex = (() => {
|
|
47888
47905
|
// https://mths.be/emoji
|
|
47889
47906
|
return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
|
|
47890
47907
|
});
|
|
47891
47908
|
|
|
47892
|
-
;//
|
|
47909
|
+
;// ./enums.ts
|
|
47893
47910
|
var NodeTypes;
|
|
47894
47911
|
(function (NodeTypes) {
|
|
47895
47912
|
NodeTypes["callout"] = "rdme-callout";
|
|
@@ -47908,7 +47925,7 @@ var NodeTypes;
|
|
|
47908
47925
|
NodeTypes["variable"] = "readme-variable";
|
|
47909
47926
|
})(NodeTypes || (NodeTypes = {}));
|
|
47910
47927
|
|
|
47911
|
-
;//
|
|
47928
|
+
;// ./processor/transform/callouts.ts
|
|
47912
47929
|
|
|
47913
47930
|
|
|
47914
47931
|
|
|
@@ -47940,7 +47957,7 @@ const calloutTransformer = () => {
|
|
|
47940
47957
|
};
|
|
47941
47958
|
/* harmony default export */ const callouts = (calloutTransformer);
|
|
47942
47959
|
|
|
47943
|
-
;//
|
|
47960
|
+
;// ./processor/transform/code-tabs.ts
|
|
47944
47961
|
|
|
47945
47962
|
|
|
47946
47963
|
const isCode = (node) => (node === null || node === void 0 ? void 0 : node.type) === 'code';
|
|
@@ -47989,7 +48006,7 @@ const codeTabsTransformer = ({ copyButtons } = {}) => (tree) => {
|
|
|
47989
48006
|
};
|
|
47990
48007
|
/* harmony default export */ const code_tabs = (codeTabsTransformer);
|
|
47991
48008
|
|
|
47992
|
-
;//
|
|
48009
|
+
;// ./processor/transform/embeds.ts
|
|
47993
48010
|
|
|
47994
48011
|
|
|
47995
48012
|
const embedTransformer = () => {
|
|
@@ -48019,7 +48036,7 @@ const embedTransformer = () => {
|
|
|
48019
48036
|
};
|
|
48020
48037
|
/* harmony default export */ const transform_embeds = (embedTransformer);
|
|
48021
48038
|
|
|
48022
|
-
;//
|
|
48039
|
+
;// ./lib/mdast.ts
|
|
48023
48040
|
|
|
48024
48041
|
const mdast = (text, opts = {}) => {
|
|
48025
48042
|
const processor = ast_processor(opts);
|
|
@@ -48028,7 +48045,7 @@ const mdast = (text, opts = {}) => {
|
|
|
48028
48045
|
};
|
|
48029
48046
|
/* harmony default export */ const lib_mdast = (mdast);
|
|
48030
48047
|
|
|
48031
|
-
;//
|
|
48048
|
+
;// ./processor/utils.ts
|
|
48032
48049
|
|
|
48033
48050
|
/**
|
|
48034
48051
|
* Formats the hProperties of a node as a string, so they can be compiled back into JSX/MDX.
|
|
@@ -48203,7 +48220,7 @@ const toAttributes = (object, keys = []) => {
|
|
|
48203
48220
|
return attributes;
|
|
48204
48221
|
};
|
|
48205
48222
|
|
|
48206
|
-
;//
|
|
48223
|
+
;// ./processor/transform/images.ts
|
|
48207
48224
|
|
|
48208
48225
|
|
|
48209
48226
|
|
|
@@ -48243,7 +48260,7 @@ const imageTransformer = () => (tree) => {
|
|
|
48243
48260
|
};
|
|
48244
48261
|
/* harmony default export */ const transform_images = (imageTransformer);
|
|
48245
48262
|
|
|
48246
|
-
;//
|
|
48263
|
+
;// ./node_modules/gemoji/index.js
|
|
48247
48264
|
/**
|
|
48248
48265
|
* @typedef Gemoji
|
|
48249
48266
|
* @property {string} emoji
|
|
@@ -65155,7 +65172,7 @@ const emojiToName = {
|
|
|
65155
65172
|
'🏴': 'wales'
|
|
65156
65173
|
}
|
|
65157
65174
|
|
|
65158
|
-
;//
|
|
65175
|
+
;// ./lib/owlmoji.ts
|
|
65159
65176
|
|
|
65160
65177
|
const owlmoji = ['owlbert-books', 'owlbert-mask', 'owlbert', 'owlbert-reading', 'owlbert-thinking'];
|
|
65161
65178
|
class Owlmoji {
|
|
@@ -65172,7 +65189,7 @@ Owlmoji.kind = (name) => {
|
|
|
65172
65189
|
Owlmoji.nameToEmoji = nameToEmoji;
|
|
65173
65190
|
/* harmony default export */ const lib_owlmoji = (Owlmoji);
|
|
65174
65191
|
|
|
65175
|
-
;//
|
|
65192
|
+
;// ./processor/transform/gemoji+.ts
|
|
65176
65193
|
|
|
65177
65194
|
|
|
65178
65195
|
|
|
@@ -65227,7 +65244,7 @@ const gemojiTransformer = () => (tree) => {
|
|
|
65227
65244
|
};
|
|
65228
65245
|
/* harmony default export */ const gemoji_ = (gemojiTransformer);
|
|
65229
65246
|
|
|
65230
|
-
;//
|
|
65247
|
+
;// ./processor/transform/div.ts
|
|
65231
65248
|
var div_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
65232
65249
|
var t = {};
|
|
65233
65250
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -65260,7 +65277,7 @@ const divTransformer = () => tree => {
|
|
|
65260
65277
|
};
|
|
65261
65278
|
/* harmony default export */ const div = (divTransformer);
|
|
65262
65279
|
|
|
65263
|
-
;//
|
|
65280
|
+
;// ./processor/transform/inject-components.ts
|
|
65264
65281
|
|
|
65265
65282
|
|
|
65266
65283
|
const inject = ({ components } = {}) => (node, index, parent) => {
|
|
@@ -65275,7 +65292,7 @@ const injectComponents = (opts) => () => tree => {
|
|
|
65275
65292
|
};
|
|
65276
65293
|
/* harmony default export */ const inject_components = (injectComponents);
|
|
65277
65294
|
|
|
65278
|
-
;//
|
|
65295
|
+
;// ./processor/transform/readme-components.ts
|
|
65279
65296
|
|
|
65280
65297
|
|
|
65281
65298
|
|
|
@@ -65428,7 +65445,7 @@ const readmeComponents = (opts) => () => tree => {
|
|
|
65428
65445
|
};
|
|
65429
65446
|
/* harmony default export */ const readme_components = (readmeComponents);
|
|
65430
65447
|
|
|
65431
|
-
;//
|
|
65448
|
+
;// ./processor/transform/readme-to-mdx.ts
|
|
65432
65449
|
|
|
65433
65450
|
|
|
65434
65451
|
|
|
@@ -65513,7 +65530,7 @@ const readmeToMdx = () => tree => {
|
|
|
65513
65530
|
};
|
|
65514
65531
|
/* harmony default export */ const readme_to_mdx = (readmeToMdx);
|
|
65515
65532
|
|
|
65516
|
-
;//
|
|
65533
|
+
;// ./processor/transform/variables.ts
|
|
65517
65534
|
|
|
65518
65535
|
|
|
65519
65536
|
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
@@ -65554,7 +65571,7 @@ const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
|
65554
65571
|
};
|
|
65555
65572
|
/* harmony default export */ const transform_variables = (variables);
|
|
65556
65573
|
|
|
65557
|
-
;//
|
|
65574
|
+
;// ./processor/transform/tables-to-jsx.ts
|
|
65558
65575
|
|
|
65559
65576
|
|
|
65560
65577
|
const alignToStyle = (align) => {
|
|
@@ -65646,7 +65663,7 @@ const tablesToJsx = () => tree => {
|
|
|
65646
65663
|
};
|
|
65647
65664
|
/* harmony default export */ const tables_to_jsx = (tablesToJsx);
|
|
65648
65665
|
|
|
65649
|
-
;//
|
|
65666
|
+
;// ./processor/transform/compatability.ts
|
|
65650
65667
|
|
|
65651
65668
|
|
|
65652
65669
|
const strongTest = (node) => ['emphasis', 'strong'].includes(node.type);
|
|
@@ -65671,7 +65688,7 @@ const compatibilityTransfomer = () => tree => {
|
|
|
65671
65688
|
};
|
|
65672
65689
|
/* harmony default export */ const compatability = (compatibilityTransfomer);
|
|
65673
65690
|
|
|
65674
|
-
;//
|
|
65691
|
+
;// ./processor/transform/mermaid.ts
|
|
65675
65692
|
|
|
65676
65693
|
const mermaidTransformer = () => (tree) => {
|
|
65677
65694
|
visit(tree, 'element', (node) => {
|
|
@@ -65686,7 +65703,7 @@ const mermaidTransformer = () => (tree) => {
|
|
|
65686
65703
|
};
|
|
65687
65704
|
/* harmony default export */ const transform_mermaid = (mermaidTransformer);
|
|
65688
65705
|
|
|
65689
|
-
;//
|
|
65706
|
+
;// ./processor/transform/index.ts
|
|
65690
65707
|
|
|
65691
65708
|
|
|
65692
65709
|
|
|
@@ -65710,12 +65727,12 @@ const defaultTransforms = {
|
|
|
65710
65727
|
};
|
|
65711
65728
|
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
65712
65729
|
|
|
65713
|
-
;//
|
|
65730
|
+
;// ./node_modules/rehype-slug/node_modules/github-slugger/regex.js
|
|
65714
65731
|
// This module is generated by `script/`.
|
|
65715
65732
|
/* eslint-disable no-control-regex, no-misleading-character-class, no-useless-escape */
|
|
65716
65733
|
const regex_regex = /[\0-\x1F!-,\.\/:-@\[-\^`\{-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0378\u0379\u037E\u0380-\u0385\u0387\u038B\u038D\u03A2\u03F6\u0482\u0530\u0557\u0558\u055A-\u055F\u0589-\u0590\u05BE\u05C0\u05C3\u05C6\u05C8-\u05CF\u05EB-\u05EE\u05F3-\u060F\u061B-\u061F\u066A-\u066D\u06D4\u06DD\u06DE\u06E9\u06FD\u06FE\u0700-\u070F\u074B\u074C\u07B2-\u07BF\u07F6-\u07F9\u07FB\u07FC\u07FE\u07FF\u082E-\u083F\u085C-\u085F\u086B-\u089F\u08B5\u08C8-\u08D2\u08E2\u0964\u0965\u0970\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09F2-\u09FB\u09FD\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF0-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B54\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B70\u0B72-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BF0-\u0BFF\u0C0D\u0C11\u0C29\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B-\u0C5F\u0C64\u0C65\u0C70-\u0C7F\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D0D\u0D11\u0D45\u0D49\u0D4F-\u0D53\u0D58-\u0D5E\u0D64\u0D65\u0D70-\u0D79\u0D80\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF4-\u0E00\u0E3B-\u0E3F\u0E4F\u0E5A-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F01-\u0F17\u0F1A-\u0F1F\u0F2A-\u0F34\u0F36\u0F38\u0F3A-\u0F3D\u0F48\u0F6D-\u0F70\u0F85\u0F98\u0FBD-\u0FC5\u0FC7-\u0FFF\u104A-\u104F\u109E\u109F\u10C6\u10C8-\u10CC\u10CE\u10CF\u10FB\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u1360-\u137F\u1390-\u139F\u13F6\u13F7\u13FE-\u1400\u166D\u166E\u1680\u169B-\u169F\u16EB-\u16ED\u16F9-\u16FF\u170D\u1715-\u171F\u1735-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17D4-\u17D6\u17D8-\u17DB\u17DE\u17DF\u17EA-\u180A\u180E\u180F\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u1945\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DA-\u19FF\u1A1C-\u1A1F\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1AA6\u1AA8-\u1AAF\u1AC1-\u1AFF\u1B4C-\u1B4F\u1B5A-\u1B6A\u1B74-\u1B7F\u1BF4-\u1BFF\u1C38-\u1C3F\u1C4A-\u1C4C\u1C7E\u1C7F\u1C89-\u1C8F\u1CBB\u1CBC\u1CC0-\u1CCF\u1CD3\u1CFB-\u1CFF\u1DFA\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FBD\u1FBF-\u1FC1\u1FC5\u1FCD-\u1FCF\u1FD4\u1FD5\u1FDC-\u1FDF\u1FED-\u1FF1\u1FF5\u1FFD-\u203E\u2041-\u2053\u2055-\u2070\u2072-\u207E\u2080-\u208F\u209D-\u20CF\u20F1-\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F-\u215F\u2189-\u24B5\u24EA-\u2BFF\u2C2F\u2C5F\u2CE5-\u2CEA\u2CF4-\u2CFF\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D70-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E00-\u2E2E\u2E30-\u3004\u3008-\u3020\u3030\u3036\u3037\u303D-\u3040\u3097\u3098\u309B\u309C\u30A0\u30FB\u3100-\u3104\u3130\u318F-\u319F\u31C0-\u31EF\u3200-\u33FF\u4DC0-\u4DFF\u9FFD-\u9FFF\uA48D-\uA4CF\uA4FE\uA4FF\uA60D-\uA60F\uA62C-\uA63F\uA673\uA67E\uA6F2-\uA716\uA720\uA721\uA789\uA78A\uA7C0\uA7C1\uA7CB-\uA7F4\uA828-\uA82B\uA82D-\uA83F\uA874-\uA87F\uA8C6-\uA8CF\uA8DA-\uA8DF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA954-\uA95F\uA97D-\uA97F\uA9C1-\uA9CE\uA9DA-\uA9DF\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A-\uAA5F\uAA77-\uAA79\uAAC3-\uAADA\uAADE\uAADF\uAAF0\uAAF1\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB5B\uAB6A-\uAB6F\uABEB\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB29\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBB2-\uFBD2\uFD3E-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFC-\uFDFF\uFE10-\uFE1F\uFE30-\uFE32\uFE35-\uFE4C\uFE50-\uFE6F\uFE75\uFEFD-\uFF0F\uFF1A-\uFF20\uFF3B-\uFF3E\uFF40\uFF5B-\uFF65\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFFF]|\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDD3F\uDD75-\uDDFC\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEE1-\uDEFF\uDF20-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDF9F\uDFC4-\uDFC7\uDFD0\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56-\uDC5F\uDC77-\uDC7F\uDC9F-\uDCDF\uDCF3\uDCF6-\uDCFF\uDD16-\uDD1F\uDD3A-\uDD7F\uDDB8-\uDDBD\uDDC0-\uDDFF\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE40-\uDE5F\uDE7D-\uDE7F\uDE9D-\uDEBF\uDEC8\uDEE7-\uDEFF\uDF36-\uDF3F\uDF56-\uDF5F\uDF73-\uDF7F\uDF92-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCFF\uDD28-\uDD2F\uDD3A-\uDE7F\uDEAA\uDEAD-\uDEAF\uDEB2-\uDEFF\uDF1D-\uDF26\uDF28-\uDF2F\uDF51-\uDFAF\uDFC5-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC47-\uDC65\uDC70-\uDC7E\uDCBB-\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD40-\uDD43\uDD48-\uDD4F\uDD74\uDD75\uDD77-\uDD7F\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDFF\uDE12\uDE38-\uDE3D\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEA9-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC4B-\uDC4F\uDC5A-\uDC5D\uDC62-\uDC7F\uDCC6\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDC1-\uDDD7\uDDDE-\uDDFF\uDE41-\uDE43\uDE45-\uDE4F\uDE5A-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF3A-\uDFFF]|\uD806[\uDC3B-\uDC9F\uDCEA-\uDCFE\uDD07\uDD08\uDD0A\uDD0B\uDD14\uDD17\uDD36\uDD39\uDD3A\uDD44-\uDD4F\uDD5A-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE2\uDDE5-\uDDFF\uDE3F-\uDE46\uDE48-\uDE4F\uDE9A-\uDE9C\uDE9E-\uDEBF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC41-\uDC4F\uDC5A-\uDC71\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF7-\uDFAF\uDFB1-\uDFFF]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80B\uD80E-\uD810\uD812-\uD819\uD824-\uD82B\uD82D\uD82E\uD830-\uD833\uD837\uD839\uD83D\uD83F\uD87B-\uD87D\uD87F\uD885-\uDB3F\uDB41-\uDBFF][\uDC00-\uDFFF]|\uD80D[\uDC2F-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDECF\uDEEE\uDEEF\uDEF5-\uDEFF\uDF37-\uDF3F\uDF44-\uDF4F\uDF5A-\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE80-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE2\uDFE5-\uDFEF\uDFF2-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD823[\uDCD6-\uDCFF\uDD09-\uDFFF]|\uD82C[\uDD1F-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A-\uDC9C\uDC9F-\uDFFF]|\uD834[\uDC00-\uDD64\uDD6A-\uDD6C\uDD73-\uDD7A\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDE41\uDE45-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3\uDFCC\uDFCD]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD4F-\uDEBF\uDEFA-\uDFFF]|\uD83A[\uDCC5-\uDCCF\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDFFF]|\uD83B[\uDC00-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDFFF]|\uD83C[\uDC00-\uDD2F\uDD4A-\uDD4F\uDD6A-\uDD6F\uDD8A-\uDFFF]|\uD83E[\uDC00-\uDFEF\uDFFA-\uDFFF]|\uD869[\uDEDE-\uDEFF]|\uD86D[\uDF35-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uD884[\uDF4B-\uDFFF]|\uDB40[\uDC00-\uDCFF\uDDF0-\uDFFF]/g
|
|
65717
65734
|
|
|
65718
|
-
;//
|
|
65735
|
+
;// ./node_modules/rehype-slug/node_modules/github-slugger/index.js
|
|
65719
65736
|
|
|
65720
65737
|
|
|
65721
65738
|
const github_slugger_own = Object.hasOwnProperty
|
|
@@ -65794,7 +65811,7 @@ function slug (value, maintainCase) {
|
|
|
65794
65811
|
return value.replace(regex_regex, '').replace(/ /g, '-')
|
|
65795
65812
|
}
|
|
65796
65813
|
|
|
65797
|
-
;//
|
|
65814
|
+
;// ./node_modules/rehype-slug/node_modules/hast-util-heading-rank/lib/index.js
|
|
65798
65815
|
/**
|
|
65799
65816
|
* @typedef {import('hast').Nodes} Nodes
|
|
65800
65817
|
*/
|
|
@@ -65818,7 +65835,7 @@ function headingRank(node) {
|
|
|
65818
65835
|
: undefined
|
|
65819
65836
|
}
|
|
65820
65837
|
|
|
65821
|
-
;//
|
|
65838
|
+
;// ./node_modules/rehype-slug/node_modules/hast-util-to-string/lib/index.js
|
|
65822
65839
|
/**
|
|
65823
65840
|
* @typedef {import('hast').Nodes} Nodes
|
|
65824
65841
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -65875,7 +65892,7 @@ function hast_util_to_string_lib_all(node) {
|
|
|
65875
65892
|
return result.join('')
|
|
65876
65893
|
}
|
|
65877
65894
|
|
|
65878
|
-
;//
|
|
65895
|
+
;// ./node_modules/rehype-slug/lib/index.js
|
|
65879
65896
|
/**
|
|
65880
65897
|
* @typedef {import('hast').Root} Root
|
|
65881
65898
|
*/
|
|
@@ -65925,7 +65942,7 @@ function rehypeSlug(options) {
|
|
|
65925
65942
|
}
|
|
65926
65943
|
}
|
|
65927
65944
|
|
|
65928
|
-
;//
|
|
65945
|
+
;// ./lib/ast-processor.ts
|
|
65929
65946
|
|
|
65930
65947
|
|
|
65931
65948
|
|
|
@@ -65942,7 +65959,7 @@ const astProcessor = (opts = { components: {} }) => remark()
|
|
|
65942
65959
|
.use(readme_components({ components: opts.components }));
|
|
65943
65960
|
/* harmony default export */ const ast_processor = (astProcessor);
|
|
65944
65961
|
|
|
65945
|
-
;//
|
|
65962
|
+
;// ./node_modules/markdown-extensions/index.js
|
|
65946
65963
|
// TODO: Load the JSON file when Node.js supports that.
|
|
65947
65964
|
|
|
65948
65965
|
const markdownExtension = [
|
|
@@ -65958,7 +65975,7 @@ const markdownExtension = [
|
|
|
65958
65975
|
|
|
65959
65976
|
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
65960
65977
|
|
|
65961
|
-
;//
|
|
65978
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
65962
65979
|
|
|
65963
65980
|
|
|
65964
65981
|
const md = markdown_extensions.map(function (d) {
|
|
@@ -65966,7 +65983,7 @@ const md = markdown_extensions.map(function (d) {
|
|
|
65966
65983
|
})
|
|
65967
65984
|
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
65968
65985
|
|
|
65969
|
-
;//
|
|
65986
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
65970
65987
|
/**
|
|
65971
65988
|
* @typedef {import('vfile').Compatible} Compatible
|
|
65972
65989
|
* @typedef {import('../compile.js').CompileOptions} CompileOptions
|
|
@@ -66021,7 +66038,7 @@ function resolve_file_and_options_looksLikeAVFile(value) {
|
|
|
66021
66038
|
)
|
|
66022
66039
|
}
|
|
66023
66040
|
|
|
66024
|
-
;//
|
|
66041
|
+
;// ./node_modules/@ungap/structured-clone/esm/types.js
|
|
66025
66042
|
const VOID = -1;
|
|
66026
66043
|
const PRIMITIVE = 0;
|
|
66027
66044
|
const ARRAY = 1;
|
|
@@ -66034,7 +66051,7 @@ const ERROR = 7;
|
|
|
66034
66051
|
const BIGINT = 8;
|
|
66035
66052
|
// export const SYMBOL = 9;
|
|
66036
66053
|
|
|
66037
|
-
;//
|
|
66054
|
+
;// ./node_modules/@ungap/structured-clone/esm/deserialize.js
|
|
66038
66055
|
|
|
66039
66056
|
|
|
66040
66057
|
const env = typeof self === 'object' ? self : globalThis;
|
|
@@ -66110,7 +66127,7 @@ const deserializer = ($, _) => {
|
|
|
66110
66127
|
*/
|
|
66111
66128
|
const deserialize = serialized => deserializer(new Map, serialized)(0);
|
|
66112
66129
|
|
|
66113
|
-
;//
|
|
66130
|
+
;// ./node_modules/@ungap/structured-clone/esm/serialize.js
|
|
66114
66131
|
|
|
66115
66132
|
|
|
66116
66133
|
const EMPTY = '';
|
|
@@ -66268,7 +66285,7 @@ const serializer = (strict, json, $, _) => {
|
|
|
66268
66285
|
return serializer(!(json || lossy), !!json, new Map, _)(value), _;
|
|
66269
66286
|
};
|
|
66270
66287
|
|
|
66271
|
-
;//
|
|
66288
|
+
;// ./node_modules/@ungap/structured-clone/esm/index.js
|
|
66272
66289
|
|
|
66273
66290
|
|
|
66274
66291
|
|
|
@@ -66295,7 +66312,7 @@ const serializer = (strict, json, $, _) => {
|
|
|
66295
66312
|
|
|
66296
66313
|
|
|
66297
66314
|
|
|
66298
|
-
;//
|
|
66315
|
+
;// ./node_modules/micromark-util-sanitize-uri/index.js
|
|
66299
66316
|
|
|
66300
66317
|
|
|
66301
66318
|
/**
|
|
@@ -66411,7 +66428,7 @@ function normalizeUri(value) {
|
|
|
66411
66428
|
return result.join('') + value.slice(start)
|
|
66412
66429
|
}
|
|
66413
66430
|
|
|
66414
|
-
;//
|
|
66431
|
+
;// ./node_modules/mdast-util-to-hast/lib/footer.js
|
|
66415
66432
|
/**
|
|
66416
66433
|
* @typedef {import('hast').Element} Element
|
|
66417
66434
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -66663,7 +66680,7 @@ function footer(state) {
|
|
|
66663
66680
|
}
|
|
66664
66681
|
}
|
|
66665
66682
|
|
|
66666
|
-
;//
|
|
66683
|
+
;// ./node_modules/unist-util-position/lib/index.js
|
|
66667
66684
|
/**
|
|
66668
66685
|
* @typedef {import('unist').Node} Node
|
|
66669
66686
|
* @typedef {import('unist').Point} Point
|
|
@@ -66760,7 +66777,7 @@ function lib_position(node) {
|
|
|
66760
66777
|
}
|
|
66761
66778
|
}
|
|
66762
66779
|
|
|
66763
|
-
;//
|
|
66780
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/blockquote.js
|
|
66764
66781
|
/**
|
|
66765
66782
|
* @typedef {import('hast').Element} Element
|
|
66766
66783
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
@@ -66792,7 +66809,7 @@ function blockquote_blockquote(state, node) {
|
|
|
66792
66809
|
return state.applyData(node, result)
|
|
66793
66810
|
}
|
|
66794
66811
|
|
|
66795
|
-
;//
|
|
66812
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/break.js
|
|
66796
66813
|
/**
|
|
66797
66814
|
* @typedef {import('hast').Element} Element
|
|
66798
66815
|
* @typedef {import('hast').Text} Text
|
|
@@ -66820,7 +66837,7 @@ function break_hardBreak(state, node) {
|
|
|
66820
66837
|
return [state.applyData(node, result), {type: 'text', value: '\n'}]
|
|
66821
66838
|
}
|
|
66822
66839
|
|
|
66823
|
-
;//
|
|
66840
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/code.js
|
|
66824
66841
|
/**
|
|
66825
66842
|
* @typedef {import('hast').Element} Element
|
|
66826
66843
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -66872,7 +66889,7 @@ function code_code(state, node) {
|
|
|
66872
66889
|
return result
|
|
66873
66890
|
}
|
|
66874
66891
|
|
|
66875
|
-
;//
|
|
66892
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/delete.js
|
|
66876
66893
|
/**
|
|
66877
66894
|
* @typedef {import('hast').Element} Element
|
|
66878
66895
|
* @typedef {import('mdast').Delete} Delete
|
|
@@ -66904,7 +66921,7 @@ function strikethrough(state, node) {
|
|
|
66904
66921
|
return state.applyData(node, result)
|
|
66905
66922
|
}
|
|
66906
66923
|
|
|
66907
|
-
;//
|
|
66924
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/emphasis.js
|
|
66908
66925
|
/**
|
|
66909
66926
|
* @typedef {import('hast').Element} Element
|
|
66910
66927
|
* @typedef {import('mdast').Emphasis} Emphasis
|
|
@@ -66936,7 +66953,7 @@ function emphasis_emphasis(state, node) {
|
|
|
66936
66953
|
return state.applyData(node, result)
|
|
66937
66954
|
}
|
|
66938
66955
|
|
|
66939
|
-
;//
|
|
66956
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js
|
|
66940
66957
|
/**
|
|
66941
66958
|
* @typedef {import('hast').Element} Element
|
|
66942
66959
|
* @typedef {import('mdast').FootnoteReference} FootnoteReference
|
|
@@ -67008,7 +67025,7 @@ function footnote_reference_footnoteReference(state, node) {
|
|
|
67008
67025
|
return state.applyData(node, sup)
|
|
67009
67026
|
}
|
|
67010
67027
|
|
|
67011
|
-
;//
|
|
67028
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/heading.js
|
|
67012
67029
|
/**
|
|
67013
67030
|
* @typedef {import('hast').Element} Element
|
|
67014
67031
|
* @typedef {import('mdast').Heading} Heading
|
|
@@ -67040,7 +67057,7 @@ function heading_heading(state, node) {
|
|
|
67040
67057
|
return state.applyData(node, result)
|
|
67041
67058
|
}
|
|
67042
67059
|
|
|
67043
|
-
;//
|
|
67060
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/html.js
|
|
67044
67061
|
/**
|
|
67045
67062
|
* @typedef {import('hast').Element} Element
|
|
67046
67063
|
* @typedef {import('mdast').Html} Html
|
|
@@ -67073,7 +67090,7 @@ function html_html(state, node) {
|
|
|
67073
67090
|
return undefined
|
|
67074
67091
|
}
|
|
67075
67092
|
|
|
67076
|
-
;//
|
|
67093
|
+
;// ./node_modules/mdast-util-to-hast/lib/revert.js
|
|
67077
67094
|
/**
|
|
67078
67095
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
67079
67096
|
*
|
|
@@ -67130,7 +67147,7 @@ function revert(state, node) {
|
|
|
67130
67147
|
return contents
|
|
67131
67148
|
}
|
|
67132
67149
|
|
|
67133
|
-
;//
|
|
67150
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/image-reference.js
|
|
67134
67151
|
/**
|
|
67135
67152
|
* @typedef {import('hast').Element} Element
|
|
67136
67153
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -67173,7 +67190,7 @@ function image_reference_imageReference(state, node) {
|
|
|
67173
67190
|
return state.applyData(node, result)
|
|
67174
67191
|
}
|
|
67175
67192
|
|
|
67176
|
-
;//
|
|
67193
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/image.js
|
|
67177
67194
|
/**
|
|
67178
67195
|
* @typedef {import('hast').Element} Element
|
|
67179
67196
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -67211,7 +67228,7 @@ function handlers_image_image(state, node) {
|
|
|
67211
67228
|
return state.applyData(node, result)
|
|
67212
67229
|
}
|
|
67213
67230
|
|
|
67214
|
-
;//
|
|
67231
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
|
|
67215
67232
|
/**
|
|
67216
67233
|
* @typedef {import('hast').Element} Element
|
|
67217
67234
|
* @typedef {import('hast').Text} Text
|
|
@@ -67248,7 +67265,7 @@ function inline_code_inlineCode(state, node) {
|
|
|
67248
67265
|
return state.applyData(node, result)
|
|
67249
67266
|
}
|
|
67250
67267
|
|
|
67251
|
-
;//
|
|
67268
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/link-reference.js
|
|
67252
67269
|
/**
|
|
67253
67270
|
* @typedef {import('hast').Element} Element
|
|
67254
67271
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -67296,7 +67313,7 @@ function link_reference_linkReference(state, node) {
|
|
|
67296
67313
|
return state.applyData(node, result)
|
|
67297
67314
|
}
|
|
67298
67315
|
|
|
67299
|
-
;//
|
|
67316
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/link.js
|
|
67300
67317
|
/**
|
|
67301
67318
|
* @typedef {import('hast').Element} Element
|
|
67302
67319
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -67335,7 +67352,7 @@ function handlers_link_link(state, node) {
|
|
|
67335
67352
|
return state.applyData(node, result)
|
|
67336
67353
|
}
|
|
67337
67354
|
|
|
67338
|
-
;//
|
|
67355
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/list-item.js
|
|
67339
67356
|
/**
|
|
67340
67357
|
* @typedef {import('hast').Element} Element
|
|
67341
67358
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -67462,7 +67479,7 @@ function listItemLoose(node) {
|
|
|
67462
67479
|
: spread
|
|
67463
67480
|
}
|
|
67464
67481
|
|
|
67465
|
-
;//
|
|
67482
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/list.js
|
|
67466
67483
|
/**
|
|
67467
67484
|
* @typedef {import('hast').Element} Element
|
|
67468
67485
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -67520,7 +67537,7 @@ function handlers_list_list(state, node) {
|
|
|
67520
67537
|
return state.applyData(node, result)
|
|
67521
67538
|
}
|
|
67522
67539
|
|
|
67523
|
-
;//
|
|
67540
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/paragraph.js
|
|
67524
67541
|
/**
|
|
67525
67542
|
* @typedef {import('hast').Element} Element
|
|
67526
67543
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
@@ -67552,7 +67569,7 @@ function paragraph_paragraph(state, node) {
|
|
|
67552
67569
|
return state.applyData(node, result)
|
|
67553
67570
|
}
|
|
67554
67571
|
|
|
67555
|
-
;//
|
|
67572
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/root.js
|
|
67556
67573
|
/**
|
|
67557
67574
|
* @typedef {import('hast').Parents} HastParents
|
|
67558
67575
|
* @typedef {import('hast').Root} HastRoot
|
|
@@ -67580,7 +67597,7 @@ function root_root(state, node) {
|
|
|
67580
67597
|
return state.applyData(node, result)
|
|
67581
67598
|
}
|
|
67582
67599
|
|
|
67583
|
-
;//
|
|
67600
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/strong.js
|
|
67584
67601
|
/**
|
|
67585
67602
|
* @typedef {import('hast').Element} Element
|
|
67586
67603
|
* @typedef {import('mdast').Strong} Strong
|
|
@@ -67612,7 +67629,7 @@ function strong_strong(state, node) {
|
|
|
67612
67629
|
return state.applyData(node, result)
|
|
67613
67630
|
}
|
|
67614
67631
|
|
|
67615
|
-
;//
|
|
67632
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table.js
|
|
67616
67633
|
/**
|
|
67617
67634
|
* @typedef {import('hast').Element} Element
|
|
67618
67635
|
* @typedef {import('mdast').Table} Table
|
|
@@ -67675,7 +67692,7 @@ function table(state, node) {
|
|
|
67675
67692
|
return state.applyData(node, result)
|
|
67676
67693
|
}
|
|
67677
67694
|
|
|
67678
|
-
;//
|
|
67695
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table-row.js
|
|
67679
67696
|
/**
|
|
67680
67697
|
* @typedef {import('hast').Element} Element
|
|
67681
67698
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -67746,7 +67763,7 @@ function tableRow(state, node, parent) {
|
|
|
67746
67763
|
return state.applyData(node, result)
|
|
67747
67764
|
}
|
|
67748
67765
|
|
|
67749
|
-
;//
|
|
67766
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table-cell.js
|
|
67750
67767
|
/**
|
|
67751
67768
|
* @typedef {import('hast').Element} Element
|
|
67752
67769
|
* @typedef {import('mdast').TableCell} TableCell
|
|
@@ -67780,7 +67797,7 @@ function tableCell(state, node) {
|
|
|
67780
67797
|
return state.applyData(node, result)
|
|
67781
67798
|
}
|
|
67782
67799
|
|
|
67783
|
-
;//
|
|
67800
|
+
;// ./node_modules/trim-lines/index.js
|
|
67784
67801
|
const tab = 9 /* `\t` */
|
|
67785
67802
|
const space = 32 /* ` ` */
|
|
67786
67803
|
|
|
@@ -67851,7 +67868,7 @@ function trimLine(value, start, end) {
|
|
|
67851
67868
|
return endIndex > startIndex ? value.slice(startIndex, endIndex) : ''
|
|
67852
67869
|
}
|
|
67853
67870
|
|
|
67854
|
-
;//
|
|
67871
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/text.js
|
|
67855
67872
|
/**
|
|
67856
67873
|
* @typedef {import('hast').Element} HastElement
|
|
67857
67874
|
* @typedef {import('hast').Text} HastText
|
|
@@ -67878,7 +67895,7 @@ function handlers_text_text(state, node) {
|
|
|
67878
67895
|
return state.applyData(node, result)
|
|
67879
67896
|
}
|
|
67880
67897
|
|
|
67881
|
-
;//
|
|
67898
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js
|
|
67882
67899
|
/**
|
|
67883
67900
|
* @typedef {import('hast').Element} Element
|
|
67884
67901
|
* @typedef {import('mdast').ThematicBreak} ThematicBreak
|
|
@@ -67910,7 +67927,7 @@ function handlers_thematic_break_thematicBreak(state, node) {
|
|
|
67910
67927
|
return state.applyData(node, result)
|
|
67911
67928
|
}
|
|
67912
67929
|
|
|
67913
|
-
;//
|
|
67930
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/index.js
|
|
67914
67931
|
|
|
67915
67932
|
|
|
67916
67933
|
|
|
@@ -67976,7 +67993,7 @@ function ignore() {
|
|
|
67976
67993
|
return undefined
|
|
67977
67994
|
}
|
|
67978
67995
|
|
|
67979
|
-
;//
|
|
67996
|
+
;// ./node_modules/mdast-util-to-hast/lib/state.js
|
|
67980
67997
|
/**
|
|
67981
67998
|
* @typedef {import('hast').Element} HastElement
|
|
67982
67999
|
* @typedef {import('hast').ElementContent} HastElementContent
|
|
@@ -68451,7 +68468,7 @@ function trimMarkdownSpaceStart(value) {
|
|
|
68451
68468
|
return value.slice(index)
|
|
68452
68469
|
}
|
|
68453
68470
|
|
|
68454
|
-
;//
|
|
68471
|
+
;// ./node_modules/mdast-util-to-hast/lib/index.js
|
|
68455
68472
|
/**
|
|
68456
68473
|
* @typedef {import('hast').Nodes} HastNodes
|
|
68457
68474
|
* @typedef {import('mdast').Nodes} MdastNodes
|
|
@@ -68559,7 +68576,7 @@ function toHast(tree, options) {
|
|
|
68559
68576
|
return result
|
|
68560
68577
|
}
|
|
68561
68578
|
|
|
68562
|
-
;//
|
|
68579
|
+
;// ./node_modules/remark-rehype/lib/index.js
|
|
68563
68580
|
// Include `data` fields in mdast and `raw` nodes in hast.
|
|
68564
68581
|
/// <reference types="mdast-util-to-hast" />
|
|
68565
68582
|
|
|
@@ -68720,7 +68737,7 @@ function remarkRehype(destination, options) {
|
|
|
68720
68737
|
}
|
|
68721
68738
|
}
|
|
68722
68739
|
|
|
68723
|
-
;//
|
|
68740
|
+
;// ./node_modules/estree-walker/src/walker.js
|
|
68724
68741
|
/**
|
|
68725
68742
|
* @typedef { import('estree').Node} Node
|
|
68726
68743
|
* @typedef {{
|
|
@@ -68783,7 +68800,7 @@ class WalkerBase {
|
|
|
68783
68800
|
}
|
|
68784
68801
|
}
|
|
68785
68802
|
|
|
68786
|
-
;//
|
|
68803
|
+
;// ./node_modules/estree-walker/src/sync.js
|
|
68787
68804
|
|
|
68788
68805
|
|
|
68789
68806
|
/**
|
|
@@ -68937,7 +68954,7 @@ function isNode(value) {
|
|
|
68937
68954
|
);
|
|
68938
68955
|
}
|
|
68939
68956
|
|
|
68940
|
-
;//
|
|
68957
|
+
;// ./node_modules/estree-walker/src/async.js
|
|
68941
68958
|
|
|
68942
68959
|
|
|
68943
68960
|
/**
|
|
@@ -69091,7 +69108,7 @@ function async_isNode(value) {
|
|
|
69091
69108
|
);
|
|
69092
69109
|
}
|
|
69093
69110
|
|
|
69094
|
-
;//
|
|
69111
|
+
;// ./node_modules/estree-walker/src/index.js
|
|
69095
69112
|
|
|
69096
69113
|
|
|
69097
69114
|
|
|
@@ -69127,7 +69144,7 @@ async function asyncWalk(ast, { enter, leave }) {
|
|
|
69127
69144
|
return await instance.visit(ast, null);
|
|
69128
69145
|
}
|
|
69129
69146
|
|
|
69130
|
-
;//
|
|
69147
|
+
;// ./node_modules/is-reference/src/index.js
|
|
69131
69148
|
/** @typedef { import('estree').Node} Node */
|
|
69132
69149
|
/** @typedef {Node | {
|
|
69133
69150
|
* type: 'PropertyDefinition';
|
|
@@ -69178,7 +69195,7 @@ function is_reference (node, parent) {
|
|
|
69178
69195
|
return false;
|
|
69179
69196
|
}
|
|
69180
69197
|
|
|
69181
|
-
;//
|
|
69198
|
+
;// ./node_modules/periscopic/src/index.js
|
|
69182
69199
|
|
|
69183
69200
|
|
|
69184
69201
|
|
|
@@ -69427,7 +69444,7 @@ function extract_identifiers(param, nodes = []) {
|
|
|
69427
69444
|
return nodes;
|
|
69428
69445
|
}
|
|
69429
69446
|
|
|
69430
|
-
;//
|
|
69447
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-create.js
|
|
69431
69448
|
/**
|
|
69432
69449
|
* @typedef {import('estree-jsx').Node} Node
|
|
69433
69450
|
*/
|
|
@@ -69459,7 +69476,7 @@ function estree_util_create_create(from, to) {
|
|
|
69459
69476
|
}
|
|
69460
69477
|
}
|
|
69461
69478
|
|
|
69462
|
-
;//
|
|
69479
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-declaration-to-expression.js
|
|
69463
69480
|
/**
|
|
69464
69481
|
* @typedef {import('estree-jsx').Declaration} Declaration
|
|
69465
69482
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
@@ -69492,7 +69509,7 @@ function declarationToExpression(declaration) {
|
|
|
69492
69509
|
return {...declaration, type: 'ClassExpression'}
|
|
69493
69510
|
}
|
|
69494
69511
|
|
|
69495
|
-
;//
|
|
69512
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-is-declaration.js
|
|
69496
69513
|
/**
|
|
69497
69514
|
* @typedef {import('estree-jsx').Declaration} Declaration
|
|
69498
69515
|
* @typedef {import('estree-jsx').MaybeNamedClassDeclaration} MaybeNamedClassDeclaration
|
|
@@ -69519,7 +69536,7 @@ function isDeclaration(node) {
|
|
|
69519
69536
|
)
|
|
69520
69537
|
}
|
|
69521
69538
|
|
|
69522
|
-
;//
|
|
69539
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-specifiers-to-declarations.js
|
|
69523
69540
|
/**
|
|
69524
69541
|
* @typedef {import('estree-jsx').AssignmentProperty} AssignmentProperty
|
|
69525
69542
|
* @typedef {import('estree-jsx').ExportSpecifier} ExportSpecifier
|
|
@@ -69614,7 +69631,7 @@ function specifiersToDeclarations(specifiers, init) {
|
|
|
69614
69631
|
return declarations
|
|
69615
69632
|
}
|
|
69616
69633
|
|
|
69617
|
-
;//
|
|
69634
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-id-or-member-expression.js
|
|
69618
69635
|
/**
|
|
69619
69636
|
* @typedef {import('estree-jsx').Identifier} Identifier
|
|
69620
69637
|
* @typedef {import('estree-jsx').JSXIdentifier} JSXIdentifier
|
|
@@ -69687,7 +69704,7 @@ function toJsxIdOrMemberExpression(ids) {
|
|
|
69687
69704
|
return object
|
|
69688
69705
|
}
|
|
69689
69706
|
|
|
69690
|
-
;//
|
|
69707
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-document.js
|
|
69691
69708
|
/**
|
|
69692
69709
|
* @typedef {import('estree-jsx').CallExpression} CallExpression
|
|
69693
69710
|
* @typedef {import('estree-jsx').Directive} Directive
|
|
@@ -70569,7 +70586,7 @@ function createImportMetaUrlVariable() {
|
|
|
70569
70586
|
]
|
|
70570
70587
|
}
|
|
70571
70588
|
|
|
70572
|
-
;//
|
|
70589
|
+
;// ./node_modules/estree-util-build-jsx/lib/index.js
|
|
70573
70590
|
/**
|
|
70574
70591
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
70575
70592
|
* @typedef {import('estree-jsx').Identifier} Identifier
|
|
@@ -71211,7 +71228,7 @@ function lib_create(from, to) {
|
|
|
71211
71228
|
}
|
|
71212
71229
|
}
|
|
71213
71230
|
|
|
71214
|
-
;//
|
|
71231
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-build.js
|
|
71215
71232
|
/**
|
|
71216
71233
|
* @typedef {import('estree-jsx').Program} Program
|
|
71217
71234
|
* @typedef {import('estree-util-build-jsx').Options} BuildJsxOptions
|
|
@@ -71304,7 +71321,7 @@ function recmaJsxBuild(options) {
|
|
|
71304
71321
|
}
|
|
71305
71322
|
}
|
|
71306
71323
|
|
|
71307
|
-
;//
|
|
71324
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-binary-addition.js
|
|
71308
71325
|
/**
|
|
71309
71326
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
71310
71327
|
*/
|
|
@@ -71331,7 +71348,7 @@ function toBinaryAddition(expressions) {
|
|
|
71331
71348
|
return left
|
|
71332
71349
|
}
|
|
71333
71350
|
|
|
71334
|
-
;//
|
|
71351
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.js
|
|
71335
71352
|
/**
|
|
71336
71353
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
71337
71354
|
* @typedef {import('estree-jsx').Function} EstreeFunction
|
|
@@ -71977,7 +71994,7 @@ function inScope(scope, id) {
|
|
|
71977
71994
|
return false
|
|
71978
71995
|
}
|
|
71979
71996
|
|
|
71980
|
-
;//
|
|
71997
|
+
;// ./node_modules/astring/dist/astring.mjs
|
|
71981
71998
|
// Astring is a tiny and fast JavaScript code generator from an ESTree-compliant AST.
|
|
71982
71999
|
//
|
|
71983
72000
|
// Astring was written by David Bonnet and released under an MIT license.
|
|
@@ -73167,7 +73184,7 @@ function generate(node, options) {
|
|
|
73167
73184
|
return state.output
|
|
73168
73185
|
}
|
|
73169
73186
|
|
|
73170
|
-
;//
|
|
73187
|
+
;// ./node_modules/estree-util-to-js/lib/index.js
|
|
73171
73188
|
/**
|
|
73172
73189
|
* @typedef {import('astring').State} State
|
|
73173
73190
|
* @typedef {import('estree-jsx').Node} Nodes
|
|
@@ -73314,7 +73331,7 @@ function toJs(tree, options) {
|
|
|
73314
73331
|
return {value, map}
|
|
73315
73332
|
}
|
|
73316
73333
|
|
|
73317
|
-
;//
|
|
73334
|
+
;// ./node_modules/estree-util-to-js/lib/jsx.js
|
|
73318
73335
|
/**
|
|
73319
73336
|
* @typedef {import('estree-jsx').JSXAttribute} JsxAttribute
|
|
73320
73337
|
* @typedef {import('estree-jsx').JSXClosingElement} JsxClosingElement
|
|
@@ -73680,7 +73697,7 @@ function replaceJsxChar($0) {
|
|
|
73680
73697
|
: '}'
|
|
73681
73698
|
}
|
|
73682
73699
|
|
|
73683
|
-
;//
|
|
73700
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.js
|
|
73684
73701
|
/**
|
|
73685
73702
|
* @typedef {import('estree-jsx').Program} Program
|
|
73686
73703
|
* @typedef {import('unified').Processor<undefined, undefined, undefined, Program, string>} Processor
|
|
@@ -73727,7 +73744,7 @@ function recmaStringify(options) {
|
|
|
73727
73744
|
}
|
|
73728
73745
|
}
|
|
73729
73746
|
|
|
73730
|
-
;//
|
|
73747
|
+
;// ./node_modules/property-information/lib/util/schema.js
|
|
73731
73748
|
/**
|
|
73732
73749
|
* @typedef {import('./info.js').Info} Info
|
|
73733
73750
|
* @typedef {Record<string, Info>} Properties
|
|
@@ -73757,7 +73774,7 @@ Schema.prototype.normal = {}
|
|
|
73757
73774
|
/** @type {string|null} */
|
|
73758
73775
|
Schema.prototype.space = null
|
|
73759
73776
|
|
|
73760
|
-
;//
|
|
73777
|
+
;// ./node_modules/property-information/lib/util/merge.js
|
|
73761
73778
|
/**
|
|
73762
73779
|
* @typedef {import('./schema.js').Properties} Properties
|
|
73763
73780
|
* @typedef {import('./schema.js').Normal} Normal
|
|
@@ -73785,7 +73802,7 @@ function merge(definitions, space) {
|
|
|
73785
73802
|
return new Schema(property, normal, space)
|
|
73786
73803
|
}
|
|
73787
73804
|
|
|
73788
|
-
;//
|
|
73805
|
+
;// ./node_modules/property-information/lib/normalize.js
|
|
73789
73806
|
/**
|
|
73790
73807
|
* @param {string} value
|
|
73791
73808
|
* @returns {string}
|
|
@@ -73794,7 +73811,7 @@ function normalize_normalize(value) {
|
|
|
73794
73811
|
return value.toLowerCase()
|
|
73795
73812
|
}
|
|
73796
73813
|
|
|
73797
|
-
;//
|
|
73814
|
+
;// ./node_modules/property-information/lib/util/info.js
|
|
73798
73815
|
class Info {
|
|
73799
73816
|
/**
|
|
73800
73817
|
* @constructor
|
|
@@ -73821,7 +73838,7 @@ Info.prototype.commaOrSpaceSeparated = false
|
|
|
73821
73838
|
Info.prototype.mustUseProperty = false
|
|
73822
73839
|
Info.prototype.defined = false
|
|
73823
73840
|
|
|
73824
|
-
;//
|
|
73841
|
+
;// ./node_modules/property-information/lib/util/types.js
|
|
73825
73842
|
let powers = 0
|
|
73826
73843
|
|
|
73827
73844
|
const types_boolean = increment()
|
|
@@ -73836,7 +73853,7 @@ function increment() {
|
|
|
73836
73853
|
return 2 ** ++powers
|
|
73837
73854
|
}
|
|
73838
73855
|
|
|
73839
|
-
;//
|
|
73856
|
+
;// ./node_modules/property-information/lib/util/defined-info.js
|
|
73840
73857
|
|
|
73841
73858
|
|
|
73842
73859
|
|
|
@@ -73882,7 +73899,7 @@ function mark(values, key, value) {
|
|
|
73882
73899
|
}
|
|
73883
73900
|
}
|
|
73884
73901
|
|
|
73885
|
-
;//
|
|
73902
|
+
;// ./node_modules/property-information/lib/util/create.js
|
|
73886
73903
|
/**
|
|
73887
73904
|
* @typedef {import('./schema.js').Properties} Properties
|
|
73888
73905
|
* @typedef {import('./schema.js').Normal} Normal
|
|
@@ -73942,7 +73959,7 @@ function create_create(definition) {
|
|
|
73942
73959
|
return new Schema(property, normal, definition.space)
|
|
73943
73960
|
}
|
|
73944
73961
|
|
|
73945
|
-
;//
|
|
73962
|
+
;// ./node_modules/property-information/lib/xlink.js
|
|
73946
73963
|
|
|
73947
73964
|
|
|
73948
73965
|
const xlink = create_create({
|
|
@@ -73961,7 +73978,7 @@ const xlink = create_create({
|
|
|
73961
73978
|
}
|
|
73962
73979
|
})
|
|
73963
73980
|
|
|
73964
|
-
;//
|
|
73981
|
+
;// ./node_modules/property-information/lib/xml.js
|
|
73965
73982
|
|
|
73966
73983
|
|
|
73967
73984
|
const xml = create_create({
|
|
@@ -73972,7 +73989,7 @@ const xml = create_create({
|
|
|
73972
73989
|
properties: {xmlLang: null, xmlBase: null, xmlSpace: null}
|
|
73973
73990
|
})
|
|
73974
73991
|
|
|
73975
|
-
;//
|
|
73992
|
+
;// ./node_modules/property-information/lib/util/case-sensitive-transform.js
|
|
73976
73993
|
/**
|
|
73977
73994
|
* @param {Record<string, string>} attributes
|
|
73978
73995
|
* @param {string} attribute
|
|
@@ -73982,7 +73999,7 @@ function caseSensitiveTransform(attributes, attribute) {
|
|
|
73982
73999
|
return attribute in attributes ? attributes[attribute] : attribute
|
|
73983
74000
|
}
|
|
73984
74001
|
|
|
73985
|
-
;//
|
|
74002
|
+
;// ./node_modules/property-information/lib/util/case-insensitive-transform.js
|
|
73986
74003
|
|
|
73987
74004
|
|
|
73988
74005
|
/**
|
|
@@ -73994,7 +74011,7 @@ function caseInsensitiveTransform(attributes, property) {
|
|
|
73994
74011
|
return caseSensitiveTransform(attributes, property.toLowerCase())
|
|
73995
74012
|
}
|
|
73996
74013
|
|
|
73997
|
-
;//
|
|
74014
|
+
;// ./node_modules/property-information/lib/xmlns.js
|
|
73998
74015
|
|
|
73999
74016
|
|
|
74000
74017
|
|
|
@@ -74005,7 +74022,7 @@ const xmlns = create_create({
|
|
|
74005
74022
|
properties: {xmlns: null, xmlnsXLink: null}
|
|
74006
74023
|
})
|
|
74007
74024
|
|
|
74008
|
-
;//
|
|
74025
|
+
;// ./node_modules/property-information/lib/aria.js
|
|
74009
74026
|
|
|
74010
74027
|
|
|
74011
74028
|
|
|
@@ -74066,7 +74083,7 @@ const aria = create_create({
|
|
|
74066
74083
|
}
|
|
74067
74084
|
})
|
|
74068
74085
|
|
|
74069
|
-
;//
|
|
74086
|
+
;// ./node_modules/property-information/lib/html.js
|
|
74070
74087
|
|
|
74071
74088
|
|
|
74072
74089
|
|
|
@@ -74383,7 +74400,7 @@ const lib_html_html = create_create({
|
|
|
74383
74400
|
}
|
|
74384
74401
|
})
|
|
74385
74402
|
|
|
74386
|
-
;//
|
|
74403
|
+
;// ./node_modules/property-information/lib/svg.js
|
|
74387
74404
|
|
|
74388
74405
|
|
|
74389
74406
|
|
|
@@ -74946,7 +74963,7 @@ const svg = create_create({
|
|
|
74946
74963
|
}
|
|
74947
74964
|
})
|
|
74948
74965
|
|
|
74949
|
-
;//
|
|
74966
|
+
;// ./node_modules/property-information/index.js
|
|
74950
74967
|
/**
|
|
74951
74968
|
* @typedef {import('./lib/util/info.js').Info} Info
|
|
74952
74969
|
* @typedef {import('./lib/util/schema.js').Schema} Schema
|
|
@@ -74966,7 +74983,7 @@ const svg = create_create({
|
|
|
74966
74983
|
const property_information_html = merge([xml, xlink, xmlns, aria, lib_html_html], 'html')
|
|
74967
74984
|
const property_information_svg = merge([xml, xlink, xmlns, aria, svg], 'svg')
|
|
74968
74985
|
|
|
74969
|
-
;//
|
|
74986
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/comment.js
|
|
74970
74987
|
/**
|
|
74971
74988
|
* @typedef {import('estree').Comment} Comment
|
|
74972
74989
|
*
|
|
@@ -75011,7 +75028,7 @@ function comment(node, state) {
|
|
|
75011
75028
|
return container
|
|
75012
75029
|
}
|
|
75013
75030
|
|
|
75014
|
-
;//
|
|
75031
|
+
;// ./node_modules/comma-separated-tokens/index.js
|
|
75015
75032
|
/**
|
|
75016
75033
|
* @typedef Options
|
|
75017
75034
|
* Configuration for `stringify`.
|
|
@@ -75087,7 +75104,7 @@ function comma_separated_tokens_stringify(values, options) {
|
|
|
75087
75104
|
.trim()
|
|
75088
75105
|
}
|
|
75089
75106
|
|
|
75090
|
-
;//
|
|
75107
|
+
;// ./node_modules/property-information/lib/find.js
|
|
75091
75108
|
/**
|
|
75092
75109
|
* @typedef {import('./util/schema.js').Schema} Schema
|
|
75093
75110
|
*/
|
|
@@ -75157,7 +75174,7 @@ function camelcase($0) {
|
|
|
75157
75174
|
return $0.charAt(1).toUpperCase()
|
|
75158
75175
|
}
|
|
75159
75176
|
|
|
75160
|
-
;//
|
|
75177
|
+
;// ./node_modules/property-information/lib/hast-to-react.js
|
|
75161
75178
|
/**
|
|
75162
75179
|
* `hast` is close to `React`, but differs in a couple of cases.
|
|
75163
75180
|
*
|
|
@@ -75187,7 +75204,7 @@ const hastToReact = {
|
|
|
75187
75204
|
xmlnsXLink: 'xmlnsXlink'
|
|
75188
75205
|
}
|
|
75189
75206
|
|
|
75190
|
-
;//
|
|
75207
|
+
;// ./node_modules/space-separated-tokens/index.js
|
|
75191
75208
|
/**
|
|
75192
75209
|
* Parse space-separated tokens to an array of strings.
|
|
75193
75210
|
*
|
|
@@ -75216,12 +75233,12 @@ function space_separated_tokens_stringify(values) {
|
|
|
75216
75233
|
// EXTERNAL MODULE: ./node_modules/style-to-object/index.js
|
|
75217
75234
|
var style_to_object = __webpack_require__(9108);
|
|
75218
75235
|
var style_to_object_default = /*#__PURE__*/__webpack_require__.n(style_to_object);
|
|
75219
|
-
;//
|
|
75236
|
+
;// ./node_modules/style-to-object/index.mjs
|
|
75220
75237
|
|
|
75221
75238
|
|
|
75222
75239
|
/* harmony default export */ const node_modules_style_to_object = ((style_to_object_default()));
|
|
75223
75240
|
|
|
75224
|
-
;//
|
|
75241
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/element.js
|
|
75225
75242
|
/**
|
|
75226
75243
|
* @typedef {import('estree').Property} Property
|
|
75227
75244
|
*
|
|
@@ -75558,7 +75575,7 @@ function toDash($0) {
|
|
|
75558
75575
|
return '-' + $0.toLowerCase()
|
|
75559
75576
|
}
|
|
75560
75577
|
|
|
75561
|
-
;//
|
|
75578
|
+
;// ./node_modules/estree-util-attach-comments/lib/index.js
|
|
75562
75579
|
/**
|
|
75563
75580
|
* @typedef {import('estree').Comment} Comment
|
|
75564
75581
|
* @typedef {import('estree').Node} Nodes
|
|
@@ -75758,7 +75775,7 @@ function compare(left, right, compareEnd) {
|
|
|
75758
75775
|
return Number.NaN
|
|
75759
75776
|
}
|
|
75760
75777
|
|
|
75761
|
-
;//
|
|
75778
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-expression.js
|
|
75762
75779
|
/**
|
|
75763
75780
|
* @typedef {import('estree').Expression} Expression
|
|
75764
75781
|
*
|
|
@@ -75810,7 +75827,7 @@ function mdx_expression_mdxExpression(node, state) {
|
|
|
75810
75827
|
return result
|
|
75811
75828
|
}
|
|
75812
75829
|
|
|
75813
|
-
;//
|
|
75830
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-jsx-element.js
|
|
75814
75831
|
/**
|
|
75815
75832
|
* @typedef {import('estree').Expression} Expression
|
|
75816
75833
|
*
|
|
@@ -75976,7 +75993,7 @@ function mdxJsxElement(node, state) {
|
|
|
75976
75993
|
return result
|
|
75977
75994
|
}
|
|
75978
75995
|
|
|
75979
|
-
;//
|
|
75996
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdxjs-esm.js
|
|
75980
75997
|
/**
|
|
75981
75998
|
* @typedef {import('mdast-util-mdxjs-esm').MdxjsEsmHast} MdxjsEsm
|
|
75982
75999
|
*
|
|
@@ -76006,7 +76023,7 @@ function mdxjs_esm_mdxjsEsm(node, state) {
|
|
|
76006
76023
|
}
|
|
76007
76024
|
}
|
|
76008
76025
|
|
|
76009
|
-
;//
|
|
76026
|
+
;// ./node_modules/hast-util-whitespace/lib/index.js
|
|
76010
76027
|
/**
|
|
76011
76028
|
* @typedef {import('hast').Nodes} Nodes
|
|
76012
76029
|
*/
|
|
@@ -76042,7 +76059,7 @@ function lib_empty(value) {
|
|
|
76042
76059
|
return value.replace(re, '') === ''
|
|
76043
76060
|
}
|
|
76044
76061
|
|
|
76045
|
-
;//
|
|
76062
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/root.js
|
|
76046
76063
|
/**
|
|
76047
76064
|
* @typedef {import('estree-jsx').JSXFragment} JsxFragment
|
|
76048
76065
|
*
|
|
@@ -76103,7 +76120,7 @@ function handlers_root_root(node, state) {
|
|
|
76103
76120
|
return result
|
|
76104
76121
|
}
|
|
76105
76122
|
|
|
76106
|
-
;//
|
|
76123
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/text.js
|
|
76107
76124
|
/**
|
|
76108
76125
|
* @typedef {import('estree').Literal} Literal
|
|
76109
76126
|
*
|
|
@@ -76141,7 +76158,7 @@ function lib_handlers_text_text(node, state) {
|
|
|
76141
76158
|
}
|
|
76142
76159
|
}
|
|
76143
76160
|
|
|
76144
|
-
;//
|
|
76161
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/index.js
|
|
76145
76162
|
|
|
76146
76163
|
|
|
76147
76164
|
|
|
@@ -76171,7 +76188,7 @@ const handlers = {
|
|
|
76171
76188
|
*/
|
|
76172
76189
|
function handlers_ignore() {}
|
|
76173
76190
|
|
|
76174
|
-
;//
|
|
76191
|
+
;// ./node_modules/hast-util-to-estree/lib/state.js
|
|
76175
76192
|
/**
|
|
76176
76193
|
* @typedef {import('estree').Comment} Comment
|
|
76177
76194
|
* @typedef {import('estree').Directive} Directive
|
|
@@ -76539,7 +76556,7 @@ function createJsxNameFromString(name) {
|
|
|
76539
76556
|
return {type: 'JSXIdentifier', name}
|
|
76540
76557
|
}
|
|
76541
76558
|
|
|
76542
|
-
;//
|
|
76559
|
+
;// ./node_modules/hast-util-to-estree/lib/index.js
|
|
76543
76560
|
/**
|
|
76544
76561
|
* Register MDX nodes in tree:
|
|
76545
76562
|
*
|
|
@@ -76643,7 +76660,7 @@ function toEstree(tree, options) {
|
|
|
76643
76660
|
return program
|
|
76644
76661
|
}
|
|
76645
76662
|
|
|
76646
|
-
;//
|
|
76663
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.js
|
|
76647
76664
|
/**
|
|
76648
76665
|
* @typedef {import('estree-jsx').Program} Program
|
|
76649
76666
|
*
|
|
@@ -76675,7 +76692,7 @@ function rehypeRecma(options) {
|
|
|
76675
76692
|
}
|
|
76676
76693
|
}
|
|
76677
76694
|
|
|
76678
|
-
;//
|
|
76695
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-remove-raw.js
|
|
76679
76696
|
/**
|
|
76680
76697
|
* @typedef {import('hast').Root} Root
|
|
76681
76698
|
*/
|
|
@@ -76708,7 +76725,7 @@ function rehypeRemoveRaw() {
|
|
|
76708
76725
|
}
|
|
76709
76726
|
}
|
|
76710
76727
|
|
|
76711
|
-
;//
|
|
76728
|
+
;// ./node_modules/collapse-white-space/index.js
|
|
76712
76729
|
/**
|
|
76713
76730
|
* @typedef {'html'|'js'} Style
|
|
76714
76731
|
*
|
|
@@ -76796,7 +76813,7 @@ function trimFactory(replace) {
|
|
|
76796
76813
|
}
|
|
76797
76814
|
}
|
|
76798
76815
|
|
|
76799
|
-
;//
|
|
76816
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/remark-mark-and-unravel.js
|
|
76800
76817
|
/**
|
|
76801
76818
|
* @typedef {import('mdast').Root} Root
|
|
76802
76819
|
* @typedef {import('mdast').RootContent} RootContent
|
|
@@ -76895,7 +76912,7 @@ function remarkMarkAndUnravel() {
|
|
|
76895
76912
|
}
|
|
76896
76913
|
}
|
|
76897
76914
|
|
|
76898
|
-
;//
|
|
76915
|
+
;// ./node_modules/@mdx-js/mdx/lib/node-types.js
|
|
76899
76916
|
/**
|
|
76900
76917
|
* List of node types made by `mdast-util-mdx`, which have to be passed
|
|
76901
76918
|
* through untouched from the mdast tree to the hast tree.
|
|
@@ -76908,7 +76925,7 @@ const nodeTypes = /** @type {const} */ ([
|
|
|
76908
76925
|
'mdxjsEsm'
|
|
76909
76926
|
])
|
|
76910
76927
|
|
|
76911
|
-
;//
|
|
76928
|
+
;// ./node_modules/@mdx-js/mdx/lib/core.js
|
|
76912
76929
|
/**
|
|
76913
76930
|
* @typedef {import('estree-jsx').Program} Program
|
|
76914
76931
|
* @typedef {import('hast-util-to-estree').ElementAttributeNameCase} ElementAttributeNameCase
|
|
@@ -77144,7 +77161,7 @@ function core_createProcessor(options) {
|
|
|
77144
77161
|
return pipeline
|
|
77145
77162
|
}
|
|
77146
77163
|
|
|
77147
|
-
;//
|
|
77164
|
+
;// ./node_modules/@mdx-js/mdx/lib/compile.js
|
|
77148
77165
|
/**
|
|
77149
77166
|
* @typedef {import('vfile').VFile} VFile
|
|
77150
77167
|
* @typedef {import('vfile').Compatible} Compatible
|
|
@@ -77204,7 +77221,7 @@ function compileSync(vfileCompatible, compileOptions) {
|
|
|
77204
77221
|
return core_createProcessor(options).processSync(file)
|
|
77205
77222
|
}
|
|
77206
77223
|
|
|
77207
|
-
;//
|
|
77224
|
+
;// ./node_modules/estree-util-value-to-estree/node_modules/is-plain-obj/index.js
|
|
77208
77225
|
function is_plain_obj_isPlainObject(value) {
|
|
77209
77226
|
if (typeof value !== 'object' || value === null) {
|
|
77210
77227
|
return false;
|
|
@@ -77214,7 +77231,7 @@ function is_plain_obj_isPlainObject(value) {
|
|
|
77214
77231
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
77215
77232
|
}
|
|
77216
77233
|
|
|
77217
|
-
;//
|
|
77234
|
+
;// ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
|
|
77218
77235
|
|
|
77219
77236
|
/**
|
|
77220
77237
|
* Create an ESTree identifier node for a given name.
|
|
@@ -77725,7 +77742,7 @@ function valueToEstree(value, options = {}) {
|
|
|
77725
77742
|
};
|
|
77726
77743
|
}
|
|
77727
77744
|
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
77728
|
-
;//
|
|
77745
|
+
;// ./node_modules/hast-util-parse-selector/lib/index.js
|
|
77729
77746
|
/**
|
|
77730
77747
|
* @typedef {import('hast').Element} Element
|
|
77731
77748
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -77814,7 +77831,7 @@ function parseSelector(selector, defaultTagName) {
|
|
|
77814
77831
|
}
|
|
77815
77832
|
}
|
|
77816
77833
|
|
|
77817
|
-
;//
|
|
77834
|
+
;// ./node_modules/hastscript/lib/create-h.js
|
|
77818
77835
|
/**
|
|
77819
77836
|
* @typedef {import('hast').Element} Element
|
|
77820
77837
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -78173,7 +78190,7 @@ function createAdjustMap(values) {
|
|
|
78173
78190
|
return result
|
|
78174
78191
|
}
|
|
78175
78192
|
|
|
78176
|
-
;//
|
|
78193
|
+
;// ./node_modules/hastscript/lib/svg-case-sensitive-tag-names.js
|
|
78177
78194
|
const svgCaseSensitiveTagNames = [
|
|
78178
78195
|
'altGlyph',
|
|
78179
78196
|
'altGlyphDef',
|
|
@@ -78216,7 +78233,7 @@ const svgCaseSensitiveTagNames = [
|
|
|
78216
78233
|
'textPath'
|
|
78217
78234
|
]
|
|
78218
78235
|
|
|
78219
|
-
;//
|
|
78236
|
+
;// ./node_modules/hastscript/lib/index.js
|
|
78220
78237
|
/**
|
|
78221
78238
|
* @typedef {import('./create-h.js').Child} Child
|
|
78222
78239
|
* Acceptable child value.
|
|
@@ -78254,7 +78271,7 @@ const h = createH(property_information_html, 'div')
|
|
|
78254
78271
|
/** @type {ReturnType<createH>} */
|
|
78255
78272
|
const s = createH(property_information_svg, 'g', svgCaseSensitiveTagNames)
|
|
78256
78273
|
|
|
78257
|
-
;//
|
|
78274
|
+
;// ./processor/plugin/toc.ts
|
|
78258
78275
|
|
|
78259
78276
|
|
|
78260
78277
|
|
|
@@ -78329,7 +78346,7 @@ const tocToMdx = (toc, components) => {
|
|
|
78329
78346
|
return lib_mdx(tocHast, { hast: true });
|
|
78330
78347
|
};
|
|
78331
78348
|
|
|
78332
|
-
;//
|
|
78349
|
+
;// ./errors/mdx-syntax-error.ts
|
|
78333
78350
|
class MdxSyntaxError extends SyntaxError {
|
|
78334
78351
|
constructor(error, doc) {
|
|
78335
78352
|
const { message, line, column, url } = error;
|
|
@@ -78349,7 +78366,7 @@ class MdxSyntaxError extends SyntaxError {
|
|
|
78349
78366
|
}
|
|
78350
78367
|
}
|
|
78351
78368
|
|
|
78352
|
-
;//
|
|
78369
|
+
;// ./lib/compile.ts
|
|
78353
78370
|
var compile_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
78354
78371
|
var t = {};
|
|
78355
78372
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -78387,7 +78404,7 @@ const compile_compile = (text, _a = {}) => {
|
|
|
78387
78404
|
};
|
|
78388
78405
|
/* harmony default export */ const lib_compile = (compile_compile);
|
|
78389
78406
|
|
|
78390
|
-
;//
|
|
78407
|
+
;// ./lib/hast.ts
|
|
78391
78408
|
|
|
78392
78409
|
|
|
78393
78410
|
|
|
@@ -78402,7 +78419,193 @@ const hast = (text, opts = {}) => {
|
|
|
78402
78419
|
};
|
|
78403
78420
|
/* harmony default export */ const lib_hast = (hast);
|
|
78404
78421
|
|
|
78405
|
-
|
|
78422
|
+
// EXTERNAL MODULE: external "@readme/markdown-legacy"
|
|
78423
|
+
var markdown_legacy_ = __webpack_require__(7374);
|
|
78424
|
+
;// ./processor/migration/emphasis.ts
|
|
78425
|
+
|
|
78426
|
+
const emphasis_strongTest = (node) => ['emphasis', 'strong'].includes(node.type);
|
|
78427
|
+
const addSpaceBefore = (index, parent) => {
|
|
78428
|
+
if (!(index > 0 && parent.children[index - 1]))
|
|
78429
|
+
return;
|
|
78430
|
+
const prev = parent.children[index - 1];
|
|
78431
|
+
// @ts-ignore - I think this is also a dependency versioning issue
|
|
78432
|
+
if (!('value' in prev) || prev.value.endsWith(' ') || prev.type === 'escape')
|
|
78433
|
+
return;
|
|
78434
|
+
parent.children.splice(index, 0, { type: 'text', value: ' ' });
|
|
78435
|
+
};
|
|
78436
|
+
const addSpaceAfter = (index, parent) => {
|
|
78437
|
+
if (!(index < parent.children.length - 1 && parent.children[index + 1]))
|
|
78438
|
+
return;
|
|
78439
|
+
const nextChild = parent.children[index + 1];
|
|
78440
|
+
if (!('value' in nextChild) || nextChild.value.startsWith(' '))
|
|
78441
|
+
return;
|
|
78442
|
+
parent.children.splice(index + 1, 0, { type: 'text', value: ' ' });
|
|
78443
|
+
};
|
|
78444
|
+
const trimEmphasis = (node, index, parent) => {
|
|
78445
|
+
let trimmed = false;
|
|
78446
|
+
visit(node, 'text', (child) => {
|
|
78447
|
+
const newValue = child.value.trimStart();
|
|
78448
|
+
if (newValue !== child.value) {
|
|
78449
|
+
trimmed = true;
|
|
78450
|
+
child.value = newValue;
|
|
78451
|
+
}
|
|
78452
|
+
return EXIT;
|
|
78453
|
+
});
|
|
78454
|
+
visit(node, 'text', (child) => {
|
|
78455
|
+
const newValue = child.value.trimEnd();
|
|
78456
|
+
if (newValue !== child.value) {
|
|
78457
|
+
trimmed = true;
|
|
78458
|
+
child.value = newValue;
|
|
78459
|
+
}
|
|
78460
|
+
return EXIT;
|
|
78461
|
+
}, true);
|
|
78462
|
+
if (trimmed) {
|
|
78463
|
+
addSpaceBefore(index, parent);
|
|
78464
|
+
addSpaceAfter(index, parent);
|
|
78465
|
+
}
|
|
78466
|
+
};
|
|
78467
|
+
const emphasisTransfomer = () => (tree) => {
|
|
78468
|
+
visit(tree, emphasis_strongTest, trimEmphasis);
|
|
78469
|
+
return tree;
|
|
78470
|
+
};
|
|
78471
|
+
/* harmony default export */ const migration_emphasis = (emphasisTransfomer);
|
|
78472
|
+
|
|
78473
|
+
;// ./processor/migration/images.ts
|
|
78474
|
+
|
|
78475
|
+
const images_imageTransformer = () => tree => {
|
|
78476
|
+
visit(tree, 'image', (image) => {
|
|
78477
|
+
var _a, _b;
|
|
78478
|
+
if (((_b = (_a = image.data) === null || _a === void 0 ? void 0 : _a.hProperties) === null || _b === void 0 ? void 0 : _b.className) === 'border') {
|
|
78479
|
+
image.data.hProperties.border = true;
|
|
78480
|
+
}
|
|
78481
|
+
});
|
|
78482
|
+
};
|
|
78483
|
+
/* harmony default export */ const migration_images = (images_imageTransformer);
|
|
78484
|
+
|
|
78485
|
+
;// ./processor/migration/linkReference.ts
|
|
78486
|
+
|
|
78487
|
+
const linkReferenceTransformer = () => (tree) => {
|
|
78488
|
+
visit(tree, 'linkReference', (node, index, parent) => {
|
|
78489
|
+
const definitions = {};
|
|
78490
|
+
visit(tree, 'definition', (def) => {
|
|
78491
|
+
definitions[def.identifier] = def;
|
|
78492
|
+
});
|
|
78493
|
+
if (node.label === node.identifier && parent) {
|
|
78494
|
+
if (!(node.identifier in definitions)) {
|
|
78495
|
+
parent.children[index] = {
|
|
78496
|
+
type: 'text',
|
|
78497
|
+
value: `[${node.label}]`,
|
|
78498
|
+
position: node.position,
|
|
78499
|
+
};
|
|
78500
|
+
}
|
|
78501
|
+
}
|
|
78502
|
+
});
|
|
78503
|
+
return tree;
|
|
78504
|
+
};
|
|
78505
|
+
/* harmony default export */ const migration_linkReference = (linkReferenceTransformer);
|
|
78506
|
+
|
|
78507
|
+
;// ./processor/migration/table-cell.ts
|
|
78508
|
+
|
|
78509
|
+
|
|
78510
|
+
const magicIndex = (i, j) => `${i === 0 ? 'h' : `${i - 1}`}-${j}`;
|
|
78511
|
+
// @note: This regex is detect malformed lists that were created by the
|
|
78512
|
+
// markdown editor. Consider the following markdown:
|
|
78513
|
+
//
|
|
78514
|
+
// ```
|
|
78515
|
+
// * item 1
|
|
78516
|
+
// * item 2
|
|
78517
|
+
// * item 3
|
|
78518
|
+
// ```
|
|
78519
|
+
//
|
|
78520
|
+
// This is a perfectly valid list. But when you put that text into a table
|
|
78521
|
+
// cell, the editor does **bad** things. After a save and load cycle, it gets
|
|
78522
|
+
// converted to this:
|
|
78523
|
+
//
|
|
78524
|
+
// ```
|
|
78525
|
+
// \_ item 1
|
|
78526
|
+
// \_ item 2
|
|
78527
|
+
// \* item 3
|
|
78528
|
+
// ```
|
|
78529
|
+
//
|
|
78530
|
+
// The following regex attempts to detect this pattern, and we'll convert it to
|
|
78531
|
+
// something more standard.
|
|
78532
|
+
const psuedoListRegex = /^(?![ \t]*([*_]+).*\1[ \t]*$)(?<ws>[ \t]*)\\?([*_])\s*(?<item>.*)$/gm;
|
|
78533
|
+
const migrateTableCells = (vfile) => (table) => {
|
|
78534
|
+
let json;
|
|
78535
|
+
try {
|
|
78536
|
+
const { position } = table;
|
|
78537
|
+
if (position) {
|
|
78538
|
+
json = JSON.parse(vfile
|
|
78539
|
+
.toString()
|
|
78540
|
+
.slice(position.start.offset, position.end.offset)
|
|
78541
|
+
.replace(/.*\[block:parameters\](.*)\[\/block\].*/s, '$1'));
|
|
78542
|
+
}
|
|
78543
|
+
}
|
|
78544
|
+
catch (err) {
|
|
78545
|
+
/**
|
|
78546
|
+
* This failure case is already handled by the following logic. Plus,
|
|
78547
|
+
* because it's being handled internally, there's no way for our
|
|
78548
|
+
* migration script to catch the error or keep track of it, and it just
|
|
78549
|
+
* ends up blowing up the output logs.
|
|
78550
|
+
*/
|
|
78551
|
+
// console.error(err);
|
|
78552
|
+
}
|
|
78553
|
+
visit(table, 'tableRow', (row, i) => {
|
|
78554
|
+
visit(row, 'tableCell', (cell, j) => {
|
|
78555
|
+
let children = cell.children;
|
|
78556
|
+
if (json && json.data[magicIndex(i, j)]) {
|
|
78557
|
+
const string = json.data[magicIndex(i, j)].replace(psuedoListRegex, '$<ws>- $<item>');
|
|
78558
|
+
children = markdown_legacy_.mdast(string).children;
|
|
78559
|
+
}
|
|
78560
|
+
// eslint-disable-next-line no-param-reassign
|
|
78561
|
+
cell.children = children.length > 1 ? children : [{ type: 'paragraph', children }];
|
|
78562
|
+
return SKIP;
|
|
78563
|
+
});
|
|
78564
|
+
return SKIP;
|
|
78565
|
+
});
|
|
78566
|
+
visit(table, 'inlineCode', (code) => {
|
|
78567
|
+
if (code.value.includes('\n')) {
|
|
78568
|
+
// eslint-disable-next-line no-param-reassign
|
|
78569
|
+
code.type = 'code';
|
|
78570
|
+
}
|
|
78571
|
+
});
|
|
78572
|
+
};
|
|
78573
|
+
const tableCellTransformer = () => (tree, vfile) => {
|
|
78574
|
+
visit(tree, 'table', migrateTableCells(vfile));
|
|
78575
|
+
return tree;
|
|
78576
|
+
};
|
|
78577
|
+
/* harmony default export */ const table_cell = (tableCellTransformer);
|
|
78578
|
+
|
|
78579
|
+
;// ./processor/migration/index.ts
|
|
78580
|
+
|
|
78581
|
+
|
|
78582
|
+
|
|
78583
|
+
|
|
78584
|
+
const transformers = [
|
|
78585
|
+
migration_emphasis,
|
|
78586
|
+
migration_images,
|
|
78587
|
+
migration_linkReference,
|
|
78588
|
+
table_cell,
|
|
78589
|
+
];
|
|
78590
|
+
/* harmony default export */ const migration = (transformers);
|
|
78591
|
+
|
|
78592
|
+
;// ./lib/mdastV6.ts
|
|
78593
|
+
|
|
78594
|
+
|
|
78595
|
+
const migrationNormalize = (doc) => {
|
|
78596
|
+
return doc.replaceAll(/^(<!--.*?)\\-->$/gms, '$1-->');
|
|
78597
|
+
};
|
|
78598
|
+
const mdastV6 = (doc) => {
|
|
78599
|
+
const [_normalizedDoc] = markdown_legacy_.setup(doc);
|
|
78600
|
+
const normalizedDoc = migrationNormalize(_normalizedDoc);
|
|
78601
|
+
const proc = markdown_legacy_.processor().use(migration);
|
|
78602
|
+
const tree = proc.parse(normalizedDoc);
|
|
78603
|
+
proc.runSync(tree, normalizedDoc);
|
|
78604
|
+
return tree;
|
|
78605
|
+
};
|
|
78606
|
+
/* harmony default export */ const lib_mdastV6 = (mdastV6);
|
|
78607
|
+
|
|
78608
|
+
;// ./node_modules/hast-util-is-element/lib/index.js
|
|
78406
78609
|
/**
|
|
78407
78610
|
* @typedef {import('hast').Element} Element
|
|
78408
78611
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -78682,7 +78885,7 @@ function looksLikeAnElement(value) {
|
|
|
78682
78885
|
)
|
|
78683
78886
|
}
|
|
78684
78887
|
|
|
78685
|
-
;//
|
|
78888
|
+
;// ./node_modules/hast-util-embedded/lib/index.js
|
|
78686
78889
|
|
|
78687
78890
|
|
|
78688
78891
|
/**
|
|
@@ -78717,7 +78920,7 @@ const embedded = convertElement(
|
|
|
78717
78920
|
}
|
|
78718
78921
|
)
|
|
78719
78922
|
|
|
78720
|
-
;//
|
|
78923
|
+
;// ./node_modules/rehype-minify-whitespace/lib/block.js
|
|
78721
78924
|
// See: <https://html.spec.whatwg.org/#the-css-user-agent-style-sheet-and-presentational-hints>
|
|
78722
78925
|
const block_blocks = [
|
|
78723
78926
|
'address', // Flow content.
|
|
@@ -78780,7 +78983,7 @@ const block_blocks = [
|
|
|
78780
78983
|
'xmp' // Flow content, legacy
|
|
78781
78984
|
]
|
|
78782
78985
|
|
|
78783
|
-
;//
|
|
78986
|
+
;// ./node_modules/rehype-minify-whitespace/lib/content.js
|
|
78784
78987
|
const lib_content_content = [
|
|
78785
78988
|
// Form.
|
|
78786
78989
|
'button',
|
|
@@ -78789,7 +78992,7 @@ const lib_content_content = [
|
|
|
78789
78992
|
'textarea'
|
|
78790
78993
|
]
|
|
78791
78994
|
|
|
78792
|
-
;//
|
|
78995
|
+
;// ./node_modules/rehype-minify-whitespace/lib/skippable.js
|
|
78793
78996
|
const skippable = [
|
|
78794
78997
|
'area',
|
|
78795
78998
|
'base',
|
|
@@ -78811,7 +79014,7 @@ const skippable = [
|
|
|
78811
79014
|
'title'
|
|
78812
79015
|
]
|
|
78813
79016
|
|
|
78814
|
-
;//
|
|
79017
|
+
;// ./node_modules/rehype-minify-whitespace/lib/index.js
|
|
78815
79018
|
/**
|
|
78816
79019
|
* @typedef {import('hast').Nodes} Nodes
|
|
78817
79020
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -79197,7 +79400,7 @@ function inferWhiteSpace(node, state) {
|
|
|
79197
79400
|
return state.whitespace
|
|
79198
79401
|
}
|
|
79199
79402
|
|
|
79200
|
-
;//
|
|
79403
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/a.js
|
|
79201
79404
|
/**
|
|
79202
79405
|
* @typedef {import('hast').Element} Element
|
|
79203
79406
|
*
|
|
@@ -79235,7 +79438,7 @@ function a(state, node) {
|
|
|
79235
79438
|
return result
|
|
79236
79439
|
}
|
|
79237
79440
|
|
|
79238
|
-
;//
|
|
79441
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/base.js
|
|
79239
79442
|
/**
|
|
79240
79443
|
* @typedef {import('hast').Element} Element
|
|
79241
79444
|
*
|
|
@@ -79261,7 +79464,7 @@ function base(state, node) {
|
|
|
79261
79464
|
}
|
|
79262
79465
|
}
|
|
79263
79466
|
|
|
79264
|
-
;//
|
|
79467
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/blockquote.js
|
|
79265
79468
|
/**
|
|
79266
79469
|
* @typedef {import('hast').Element} Element
|
|
79267
79470
|
*
|
|
@@ -79288,7 +79491,7 @@ function handlers_blockquote_blockquote(state, node) {
|
|
|
79288
79491
|
return result
|
|
79289
79492
|
}
|
|
79290
79493
|
|
|
79291
|
-
;//
|
|
79494
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/br.js
|
|
79292
79495
|
/**
|
|
79293
79496
|
* @typedef {import('hast').Element} Element
|
|
79294
79497
|
*
|
|
@@ -79315,7 +79518,7 @@ function br(state, node) {
|
|
|
79315
79518
|
return result
|
|
79316
79519
|
}
|
|
79317
79520
|
|
|
79318
|
-
;//
|
|
79521
|
+
;// ./node_modules/unist-util-find-after/lib/index.js
|
|
79319
79522
|
/**
|
|
79320
79523
|
* @typedef {import('unist').Node} UnistNode
|
|
79321
79524
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -79447,7 +79650,7 @@ const findAfter =
|
|
|
79447
79650
|
}
|
|
79448
79651
|
)
|
|
79449
79652
|
|
|
79450
|
-
;//
|
|
79653
|
+
;// ./node_modules/hast-util-to-text/lib/index.js
|
|
79451
79654
|
/**
|
|
79452
79655
|
* @typedef {import('hast').Comment} Comment
|
|
79453
79656
|
* @typedef {import('hast').Element} Element
|
|
@@ -80082,7 +80285,7 @@ function closedDialog(node) {
|
|
|
80082
80285
|
return node.tagName === 'dialog' && !(node.properties || {}).open
|
|
80083
80286
|
}
|
|
80084
80287
|
|
|
80085
|
-
;//
|
|
80288
|
+
;// ./node_modules/trim-trailing-lines/index.js
|
|
80086
80289
|
/**
|
|
80087
80290
|
* Remove final line endings from `value`
|
|
80088
80291
|
*
|
|
@@ -80107,7 +80310,7 @@ function trimTrailingLines(value) {
|
|
|
80107
80310
|
return input.slice(0, end)
|
|
80108
80311
|
}
|
|
80109
80312
|
|
|
80110
|
-
;//
|
|
80313
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/code.js
|
|
80111
80314
|
/**
|
|
80112
80315
|
* @typedef {import('hast').Element} Element
|
|
80113
80316
|
*
|
|
@@ -80176,7 +80379,7 @@ function handlers_code_code(state, node) {
|
|
|
80176
80379
|
return result
|
|
80177
80380
|
}
|
|
80178
80381
|
|
|
80179
|
-
;//
|
|
80382
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/comment.js
|
|
80180
80383
|
/**
|
|
80181
80384
|
* @typedef {import('hast').Comment} Comment
|
|
80182
80385
|
*
|
|
@@ -80206,7 +80409,7 @@ function comment_comment(state, node) {
|
|
|
80206
80409
|
return result
|
|
80207
80410
|
}
|
|
80208
80411
|
|
|
80209
|
-
;//
|
|
80412
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/del.js
|
|
80210
80413
|
/**
|
|
80211
80414
|
* @typedef {import('hast').Element} Element
|
|
80212
80415
|
*
|
|
@@ -80237,7 +80440,7 @@ function del(state, node) {
|
|
|
80237
80440
|
return result
|
|
80238
80441
|
}
|
|
80239
80442
|
|
|
80240
|
-
;//
|
|
80443
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/list-items-spread.js
|
|
80241
80444
|
/**
|
|
80242
80445
|
* @typedef {import('mdast').ListContent} ListContent
|
|
80243
80446
|
*/
|
|
@@ -80267,7 +80470,7 @@ function listItemsSpread(children) {
|
|
|
80267
80470
|
return false
|
|
80268
80471
|
}
|
|
80269
80472
|
|
|
80270
|
-
;//
|
|
80473
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/dl.js
|
|
80271
80474
|
/**
|
|
80272
80475
|
* @typedef {import('hast').Element} Element
|
|
80273
80476
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -80421,7 +80624,7 @@ function dl_create() {
|
|
|
80421
80624
|
return {type: 'listItem', spread: false, checked: null, children: []}
|
|
80422
80625
|
}
|
|
80423
80626
|
|
|
80424
|
-
;//
|
|
80627
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/em.js
|
|
80425
80628
|
/**
|
|
80426
80629
|
* @typedef {import('hast').Element} Element
|
|
80427
80630
|
*
|
|
@@ -80453,7 +80656,7 @@ function em(state, node) {
|
|
|
80453
80656
|
return result
|
|
80454
80657
|
}
|
|
80455
80658
|
|
|
80456
|
-
;//
|
|
80659
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/heading.js
|
|
80457
80660
|
/**
|
|
80458
80661
|
* @typedef {import('hast').Element} Element
|
|
80459
80662
|
*
|
|
@@ -80487,7 +80690,7 @@ function handlers_heading_heading(state, node) {
|
|
|
80487
80690
|
return result
|
|
80488
80691
|
}
|
|
80489
80692
|
|
|
80490
|
-
;//
|
|
80693
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/hr.js
|
|
80491
80694
|
/**
|
|
80492
80695
|
* @typedef {import('hast').Element} Element
|
|
80493
80696
|
*
|
|
@@ -80514,7 +80717,7 @@ function hr(state, node) {
|
|
|
80514
80717
|
return result
|
|
80515
80718
|
}
|
|
80516
80719
|
|
|
80517
|
-
;//
|
|
80720
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/iframe.js
|
|
80518
80721
|
/**
|
|
80519
80722
|
* @typedef {import('hast').Element} Element
|
|
80520
80723
|
*
|
|
@@ -80556,7 +80759,7 @@ function iframe(state, node) {
|
|
|
80556
80759
|
}
|
|
80557
80760
|
}
|
|
80558
80761
|
|
|
80559
|
-
;//
|
|
80762
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/img.js
|
|
80560
80763
|
/**
|
|
80561
80764
|
* @typedef {import('hast').Element} Element
|
|
80562
80765
|
*
|
|
@@ -80590,7 +80793,7 @@ function img(state, node) {
|
|
|
80590
80793
|
return result
|
|
80591
80794
|
}
|
|
80592
80795
|
|
|
80593
|
-
;//
|
|
80796
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/inline-code.js
|
|
80594
80797
|
/**
|
|
80595
80798
|
* @typedef {import('hast').Element} Element
|
|
80596
80799
|
*
|
|
@@ -80616,7 +80819,7 @@ function handlers_inline_code_inlineCode(state, node) {
|
|
|
80616
80819
|
return result
|
|
80617
80820
|
}
|
|
80618
80821
|
|
|
80619
|
-
;//
|
|
80822
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/find-selected-options.js
|
|
80620
80823
|
/**
|
|
80621
80824
|
* @typedef {import('hast').Element} Element
|
|
80622
80825
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -80711,7 +80914,7 @@ function findOptions(node) {
|
|
|
80711
80914
|
return results
|
|
80712
80915
|
}
|
|
80713
80916
|
|
|
80714
|
-
;//
|
|
80917
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/input.js
|
|
80715
80918
|
/**
|
|
80716
80919
|
* @typedef {import('hast').Element} Element
|
|
80717
80920
|
*
|
|
@@ -80854,7 +81057,7 @@ function input(state, node) {
|
|
|
80854
81057
|
return result
|
|
80855
81058
|
}
|
|
80856
81059
|
|
|
80857
|
-
;//
|
|
81060
|
+
;// ./node_modules/hast-util-has-property/lib/index.js
|
|
80858
81061
|
/**
|
|
80859
81062
|
* @typedef {import('hast').Element} Element
|
|
80860
81063
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -80885,7 +81088,7 @@ function hasProperty(node, name) {
|
|
|
80885
81088
|
return value !== null && value !== undefined && value !== false
|
|
80886
81089
|
}
|
|
80887
81090
|
|
|
80888
|
-
;//
|
|
81091
|
+
;// ./node_modules/hast-util-is-body-ok-link/lib/index.js
|
|
80889
81092
|
/**
|
|
80890
81093
|
* @typedef {import('hast').Nodes} Nodes
|
|
80891
81094
|
*/
|
|
@@ -80925,7 +81128,7 @@ function isBodyOkLink(node) {
|
|
|
80925
81128
|
return true
|
|
80926
81129
|
}
|
|
80927
81130
|
|
|
80928
|
-
;//
|
|
81131
|
+
;// ./node_modules/hast-util-phrasing/lib/index.js
|
|
80929
81132
|
/**
|
|
80930
81133
|
* @typedef {import('hast').Nodes} Nodes
|
|
80931
81134
|
*/
|
|
@@ -81005,7 +81208,7 @@ function lib_phrasing(value) {
|
|
|
81005
81208
|
)
|
|
81006
81209
|
}
|
|
81007
81210
|
|
|
81008
|
-
;//
|
|
81211
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/li.js
|
|
81009
81212
|
/**
|
|
81010
81213
|
* @typedef {import('hast').Element} Element
|
|
81011
81214
|
*
|
|
@@ -81156,7 +81359,7 @@ function extractLeadingCheckbox(node) {
|
|
|
81156
81359
|
return {checkbox: undefined, rest: node}
|
|
81157
81360
|
}
|
|
81158
81361
|
|
|
81159
|
-
;//
|
|
81362
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/list.js
|
|
81160
81363
|
/**
|
|
81161
81364
|
* @typedef {import('hast').Element} Element
|
|
81162
81365
|
*
|
|
@@ -81209,7 +81412,7 @@ function list_create() {
|
|
|
81209
81412
|
return {type: 'listItem', spread: false, checked: null, children: []}
|
|
81210
81413
|
}
|
|
81211
81414
|
|
|
81212
|
-
;//
|
|
81415
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/wrap.js
|
|
81213
81416
|
/**
|
|
81214
81417
|
* @typedef {import('mdast').BlockContent} BlockContent
|
|
81215
81418
|
* @typedef {import('mdast').Delete} Delete
|
|
@@ -81432,7 +81635,7 @@ function cloneWithoutChildren(node) {
|
|
|
81432
81635
|
return esm({...node, children: []})
|
|
81433
81636
|
}
|
|
81434
81637
|
|
|
81435
|
-
;//
|
|
81638
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/media.js
|
|
81436
81639
|
/**
|
|
81437
81640
|
* @typedef {import('hast').Element} Element
|
|
81438
81641
|
*
|
|
@@ -81522,7 +81725,7 @@ function media(state, node) {
|
|
|
81522
81725
|
return result
|
|
81523
81726
|
}
|
|
81524
81727
|
|
|
81525
|
-
;//
|
|
81728
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/p.js
|
|
81526
81729
|
/**
|
|
81527
81730
|
* @typedef {import('hast').Element} Element
|
|
81528
81731
|
*
|
|
@@ -81556,7 +81759,7 @@ function p_p(state, node) {
|
|
|
81556
81759
|
}
|
|
81557
81760
|
}
|
|
81558
81761
|
|
|
81559
|
-
;//
|
|
81762
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/q.js
|
|
81560
81763
|
/**
|
|
81561
81764
|
* @typedef {import('hast').Element} Element
|
|
81562
81765
|
*
|
|
@@ -81603,7 +81806,7 @@ function q(state, node) {
|
|
|
81603
81806
|
return contents
|
|
81604
81807
|
}
|
|
81605
81808
|
|
|
81606
|
-
;//
|
|
81809
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/root.js
|
|
81607
81810
|
/**
|
|
81608
81811
|
* @typedef {import('hast').Root} HastRoot
|
|
81609
81812
|
*
|
|
@@ -81635,7 +81838,7 @@ function lib_handlers_root_root(state, node) {
|
|
|
81635
81838
|
return result
|
|
81636
81839
|
}
|
|
81637
81840
|
|
|
81638
|
-
;//
|
|
81841
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/select.js
|
|
81639
81842
|
/**
|
|
81640
81843
|
* @typedef {import('hast').Element} Element
|
|
81641
81844
|
*
|
|
@@ -81673,7 +81876,7 @@ function select_select(state, node) {
|
|
|
81673
81876
|
}
|
|
81674
81877
|
}
|
|
81675
81878
|
|
|
81676
|
-
;//
|
|
81879
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/strong.js
|
|
81677
81880
|
/**
|
|
81678
81881
|
* @typedef {import('hast').Element} Element
|
|
81679
81882
|
*
|
|
@@ -81705,7 +81908,7 @@ function handlers_strong_strong(state, node) {
|
|
|
81705
81908
|
return result
|
|
81706
81909
|
}
|
|
81707
81910
|
|
|
81708
|
-
;//
|
|
81911
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table-cell.js
|
|
81709
81912
|
/**
|
|
81710
81913
|
* @typedef {import('hast').Element} Element
|
|
81711
81914
|
*
|
|
@@ -81751,7 +81954,7 @@ function table_cell_tableCell(state, node) {
|
|
|
81751
81954
|
return result
|
|
81752
81955
|
}
|
|
81753
81956
|
|
|
81754
|
-
;//
|
|
81957
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table-row.js
|
|
81755
81958
|
/**
|
|
81756
81959
|
* @typedef {import('hast').Element} Element
|
|
81757
81960
|
*
|
|
@@ -81788,7 +81991,7 @@ function table_row_create() {
|
|
|
81788
81991
|
return {type: 'tableCell', children: []}
|
|
81789
81992
|
}
|
|
81790
81993
|
|
|
81791
|
-
;//
|
|
81994
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table.js
|
|
81792
81995
|
/**
|
|
81793
81996
|
* @typedef {import('hast').Element} Element
|
|
81794
81997
|
*
|
|
@@ -81997,7 +82200,7 @@ function createRow() {
|
|
|
81997
82200
|
return {type: 'tableRow', children: []}
|
|
81998
82201
|
}
|
|
81999
82202
|
|
|
82000
|
-
;//
|
|
82203
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/text.js
|
|
82001
82204
|
/**
|
|
82002
82205
|
* @typedef {import('hast').Text} HastText
|
|
82003
82206
|
*
|
|
@@ -82024,7 +82227,7 @@ function hast_util_to_mdast_lib_handlers_text_text(state, node) {
|
|
|
82024
82227
|
return result
|
|
82025
82228
|
}
|
|
82026
82229
|
|
|
82027
|
-
;//
|
|
82230
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/textarea.js
|
|
82028
82231
|
/**
|
|
82029
82232
|
* @typedef {import('hast').Element} Element
|
|
82030
82233
|
*
|
|
@@ -82050,7 +82253,7 @@ function textarea_textarea(state, node) {
|
|
|
82050
82253
|
return result
|
|
82051
82254
|
}
|
|
82052
82255
|
|
|
82053
|
-
;//
|
|
82256
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/wbr.js
|
|
82054
82257
|
/**
|
|
82055
82258
|
* @typedef {import('hast').Element} Element
|
|
82056
82259
|
*
|
|
@@ -82077,7 +82280,7 @@ function wbr(state, node) {
|
|
|
82077
82280
|
return result
|
|
82078
82281
|
}
|
|
82079
82282
|
|
|
82080
|
-
;//
|
|
82283
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/index.js
|
|
82081
82284
|
/**
|
|
82082
82285
|
* @typedef {import('hast').Parents} Parents
|
|
82083
82286
|
*
|
|
@@ -82313,7 +82516,7 @@ function handlers_flow(state, node) {
|
|
|
82313
82516
|
*/
|
|
82314
82517
|
function lib_handlers_ignore() {}
|
|
82315
82518
|
|
|
82316
|
-
;//
|
|
82519
|
+
;// ./node_modules/hast-util-to-mdast/lib/state.js
|
|
82317
82520
|
/**
|
|
82318
82521
|
* @typedef {import('hast').Element} Element
|
|
82319
82522
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -82718,7 +82921,7 @@ function toSpecificContent(nodes, build) {
|
|
|
82718
82921
|
}
|
|
82719
82922
|
}
|
|
82720
82923
|
|
|
82721
|
-
;//
|
|
82924
|
+
;// ./node_modules/hast-util-to-mdast/lib/index.js
|
|
82722
82925
|
/**
|
|
82723
82926
|
* @typedef {import('hast').Nodes} Nodes
|
|
82724
82927
|
*
|
|
@@ -82834,7 +83037,7 @@ function toMdast(tree, options) {
|
|
|
82834
83037
|
return mdast
|
|
82835
83038
|
}
|
|
82836
83039
|
|
|
82837
|
-
;//
|
|
83040
|
+
;// ./node_modules/rehype-remark/lib/index.js
|
|
82838
83041
|
/**
|
|
82839
83042
|
* @typedef {import('hast').Root} HastRoot
|
|
82840
83043
|
* @typedef {import('hast-util-to-mdast').Options} Options
|
|
@@ -82922,7 +83125,7 @@ function rehypeRemark(destination, options) {
|
|
|
82922
83125
|
}
|
|
82923
83126
|
}
|
|
82924
83127
|
|
|
82925
|
-
;//
|
|
83128
|
+
;// ./processor/compile/callout.ts
|
|
82926
83129
|
|
|
82927
83130
|
const callout = (node, _, state, info) => {
|
|
82928
83131
|
const exit = state.enter(NodeTypes.callout);
|
|
@@ -82942,7 +83145,7 @@ const callout = (node, _, state, info) => {
|
|
|
82942
83145
|
};
|
|
82943
83146
|
/* harmony default export */ const compile_callout = (callout);
|
|
82944
83147
|
|
|
82945
|
-
;//
|
|
83148
|
+
;// ./processor/compile/code-tabs.ts
|
|
82946
83149
|
|
|
82947
83150
|
const codeTabs = (node, _, state, info) => {
|
|
82948
83151
|
const exit = state.enter(NodeTypes.codeTabs);
|
|
@@ -82955,7 +83158,7 @@ const codeTabs = (node, _, state, info) => {
|
|
|
82955
83158
|
};
|
|
82956
83159
|
/* harmony default export */ const compile_code_tabs = (codeTabs);
|
|
82957
83160
|
|
|
82958
|
-
;//
|
|
83161
|
+
;// ./processor/compile/embed.ts
|
|
82959
83162
|
|
|
82960
83163
|
const embed_embed = (node) => {
|
|
82961
83164
|
const attributes = formatHProps(node);
|
|
@@ -82968,11 +83171,11 @@ const embed_embed = (node) => {
|
|
|
82968
83171
|
};
|
|
82969
83172
|
/* harmony default export */ const compile_embed = (embed_embed);
|
|
82970
83173
|
|
|
82971
|
-
;//
|
|
83174
|
+
;// ./processor/compile/gemoji.ts
|
|
82972
83175
|
const gemoji_gemoji = (node) => `:${node.name}:`;
|
|
82973
83176
|
/* harmony default export */ const compile_gemoji = (gemoji_gemoji);
|
|
82974
83177
|
|
|
82975
|
-
;//
|
|
83178
|
+
;// ./processor/compile/html-block.ts
|
|
82976
83179
|
|
|
82977
83180
|
const htmlBlock = (node) => {
|
|
82978
83181
|
const { runScripts, html } = getHProps(node);
|
|
@@ -82982,7 +83185,7 @@ ${reformatHTML(html)}
|
|
|
82982
83185
|
};
|
|
82983
83186
|
/* harmony default export */ const html_block = (htmlBlock);
|
|
82984
83187
|
|
|
82985
|
-
;//
|
|
83188
|
+
;// ./processor/compile/compatibility.ts
|
|
82986
83189
|
var compatibility_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
82987
83190
|
var t = {};
|
|
82988
83191
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -83053,7 +83256,7 @@ const compatibility = (node) => {
|
|
|
83053
83256
|
};
|
|
83054
83257
|
/* harmony default export */ const compile_compatibility = (compatibility);
|
|
83055
83258
|
|
|
83056
|
-
;//
|
|
83259
|
+
;// ./processor/compile/variable.ts
|
|
83057
83260
|
const variable = (node) => {
|
|
83058
83261
|
// @note: coming from RDMD, it's set as `variable`. But when mdx is parsed,
|
|
83059
83262
|
// it's set as `name`
|
|
@@ -83062,7 +83265,7 @@ const variable = (node) => {
|
|
|
83062
83265
|
};
|
|
83063
83266
|
/* harmony default export */ const compile_variable = (variable);
|
|
83064
83267
|
|
|
83065
|
-
;//
|
|
83268
|
+
;// ./processor/compile/index.ts
|
|
83066
83269
|
|
|
83067
83270
|
|
|
83068
83271
|
|
|
@@ -83094,7 +83297,7 @@ function compilers() {
|
|
|
83094
83297
|
}
|
|
83095
83298
|
/* harmony default export */ const processor_compile = (compilers);
|
|
83096
83299
|
|
|
83097
|
-
;//
|
|
83300
|
+
;// ./lib/mdx.ts
|
|
83098
83301
|
var mdx_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
83099
83302
|
var t = {};
|
|
83100
83303
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -83129,7 +83332,7 @@ const mdx_mdx = (tree, _a = {}) => {
|
|
|
83129
83332
|
};
|
|
83130
83333
|
/* harmony default export */ const lib_mdx = (mdx_mdx);
|
|
83131
83334
|
|
|
83132
|
-
;//
|
|
83335
|
+
;// ./lib/plain.ts
|
|
83133
83336
|
|
|
83134
83337
|
const STRIP_TAGS = ['script', 'style'];
|
|
83135
83338
|
function plain_one(node, opts) {
|
|
@@ -83187,7 +83390,7 @@ const plain = (node, opts = {}) => {
|
|
|
83187
83390
|
// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
|
|
83188
83391
|
var jsx_runtime = __webpack_require__(4848);
|
|
83189
83392
|
var jsx_runtime_namespaceObject = /*#__PURE__*/__webpack_require__.t(jsx_runtime, 2);
|
|
83190
|
-
;//
|
|
83393
|
+
;// ./node_modules/@mdx-js/mdx/lib/run.js
|
|
83191
83394
|
/**
|
|
83192
83395
|
* @typedef {import('mdx/types.js').MDXModule} MDXModule
|
|
83193
83396
|
*
|
|
@@ -83237,7 +83440,7 @@ function runSync(code, options) {
|
|
|
83237
83440
|
// EXTERNAL MODULE: external "@readme/variable"
|
|
83238
83441
|
var variable_ = __webpack_require__(8167);
|
|
83239
83442
|
var variable_default = /*#__PURE__*/__webpack_require__.n(variable_);
|
|
83240
|
-
;//
|
|
83443
|
+
;// ./contexts/index.tsx
|
|
83241
83444
|
|
|
83242
83445
|
|
|
83243
83446
|
|
|
@@ -83252,7 +83455,7 @@ const Contexts = ({ children, terms = [], variables = { user: {}, defaults: [] }
|
|
|
83252
83455
|
};
|
|
83253
83456
|
/* harmony default export */ const contexts = (Contexts);
|
|
83254
83457
|
|
|
83255
|
-
;//
|
|
83458
|
+
;// ./lib/run.tsx
|
|
83256
83459
|
var run_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
83257
83460
|
var t = {};
|
|
83258
83461
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -83301,7 +83504,7 @@ const run_run = async (string, _opts = {}) => {
|
|
|
83301
83504
|
};
|
|
83302
83505
|
/* harmony default export */ const lib_run = (run_run);
|
|
83303
83506
|
|
|
83304
|
-
;//
|
|
83507
|
+
;// ./lib/tags.ts
|
|
83305
83508
|
|
|
83306
83509
|
|
|
83307
83510
|
|
|
@@ -83316,7 +83519,8 @@ const tags = (doc) => {
|
|
|
83316
83519
|
};
|
|
83317
83520
|
/* harmony default export */ const lib_tags = (tags);
|
|
83318
83521
|
|
|
83319
|
-
;//
|
|
83522
|
+
;// ./lib/index.ts
|
|
83523
|
+
|
|
83320
83524
|
|
|
83321
83525
|
|
|
83322
83526
|
|
|
@@ -83327,7 +83531,7 @@ const tags = (doc) => {
|
|
|
83327
83531
|
|
|
83328
83532
|
|
|
83329
83533
|
|
|
83330
|
-
;//
|
|
83534
|
+
;// ./index.tsx
|
|
83331
83535
|
|
|
83332
83536
|
|
|
83333
83537
|
|