@readme/markdown 7.7.3 → 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/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__(6845);
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 global = __webpack_require__(200);
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(global, key, { value: value, configurable: true, writable: true });
7722
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
7723
7723
  } catch (error) {
7724
- global[key] = value;
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 global = __webpack_require__(200);
7752
+ var globalThis = __webpack_require__(1301);
7753
7753
  var isObject = __webpack_require__(5335);
7754
7754
 
7755
- var document = global.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
- /***/ 7061:
7842
+ /***/ 290:
7843
7843
  /***/ ((module) => {
7844
7844
 
7845
7845
  "use strict";
7846
7846
 
7847
- module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
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
+ ];
7848
7857
 
7849
7858
 
7850
7859
  /***/ }),
7851
7860
 
7852
- /***/ 6845:
7861
+ /***/ 8340:
7853
7862
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
7854
7863
 
7855
7864
  "use strict";
7856
7865
 
7857
- var global = __webpack_require__(200);
7858
- var userAgent = __webpack_require__(7061);
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) : '';
7872
+
7859
7873
 
7860
- var process = global.process;
7861
- var Deno = global.Deno;
7874
+ /***/ }),
7875
+
7876
+ /***/ 1928:
7877
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
7878
+
7879
+ "use strict";
7880
+
7881
+ var globalThis = __webpack_require__(1301);
7882
+ var userAgent = __webpack_require__(8340);
7883
+
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 global = __webpack_require__(200);
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 = global;
7946
+ target = globalThis;
7942
7947
  } else if (STATIC) {
7943
- target = global[TARGET] || defineGlobalProperty(TARGET, {});
7948
+ target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
7944
7949
  } else {
7945
- target = global[TARGET] && global[TARGET].prototype;
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 global = __webpack_require__(200);
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(global[namespace]) : global[namespace] && global[namespace][method];
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
- /***/ 200:
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 global = __webpack_require__(200);
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 = global.TypeError;
8565
- var WeakMap = global.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
- activeXDocument = null; // avoid memory leak
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 global = __webpack_require__(200);
9774
+ var globalThis = __webpack_require__(1301);
9769
9775
 
9770
- module.exports = global;
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 global = __webpack_require__(200);
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 = global.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 global = __webpack_require__(200);
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 = global.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 global = __webpack_require__(200);
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 = global.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__(200);
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.36.1',
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.36.1/LICENSE',
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__(6845);
10244
+ var V8_VERSION = __webpack_require__(1928);
10239
10245
  var fails = __webpack_require__(2074);
10240
- var global = __webpack_require__(200);
10246
+ var globalThis = __webpack_require__(1301);
10241
10247
 
10242
- var $String = global.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 global = __webpack_require__(200);
10576
+ var globalThis = __webpack_require__(1301);
10571
10577
  var isCallable = __webpack_require__(8420);
10572
10578
 
10573
- var WeakMap = global.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 global = __webpack_require__(200);
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 = global.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__(6845);
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 = undefined;
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 global = __webpack_require__(200);
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 = global[NUMBER];
11201
+ var NativeNumber = globalThis[NUMBER];
11196
11202
  var PureNumberNamespace = path[NUMBER];
11197
11203
  var NumberPrototype = NativeNumber.prototype;
11198
- var TypeError = global.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 global = __webpack_require__(200);
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 = global.Symbol;
11706
+ var $Symbol = globalThis.Symbol;
11701
11707
  var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
11702
- var RangeError = global.RangeError;
11703
- var TypeError = global.TypeError;
11704
- var QObject = global.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 ? global : this;
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 global = __webpack_require__(200);
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 = global.Symbol;
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 global = __webpack_require__(200);
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(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype);
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 global = __webpack_require__(200);
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(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
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
- ;// CONCATENATED MODULE: ./components/Accordion/index.tsx
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
- ;// CONCATENATED MODULE: ./contexts/BaseUrl.js
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
- ;// CONCATENATED MODULE: ./components/Anchor.jsx
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
- ;// CONCATENATED MODULE: ./components/Callout/index.tsx
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
- ;// CONCATENATED MODULE: ./components/Cards/index.tsx
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
- ;// CONCATENATED MODULE: ./components/Code/index.tsx
13608
+ ;// ./components/Code/index.tsx
13593
13609
 
13594
13610
 
13595
13611
  // Only load CodeMirror in the browser, for SSR
@@ -13639,7 +13655,7 @@ 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
- ;// CONCATENATED MODULE: ./components/CodeTabs/index.tsx
13658
+ ;// ./components/CodeTabs/index.tsx
13643
13659
 
13644
13660
 
13645
13661
  let mermaid;
@@ -13682,7 +13698,7 @@ const CodeTabs = props => {
13682
13698
  };
13683
13699
  /* harmony default export */ const components_CodeTabs = (CodeTabs);
13684
13700
 
13685
- ;// CONCATENATED MODULE: ./components/Embed/index.tsx
13701
+ ;// ./components/Embed/index.tsx
13686
13702
  var __rest = (undefined && undefined.__rest) || function (s, e) {
13687
13703
  var t = {};
13688
13704
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -13743,12 +13759,12 @@ const Embed = (_a) => {
13743
13759
  // EXTERNAL MODULE: external "@tippyjs/react"
13744
13760
  var react_ = __webpack_require__(6570);
13745
13761
  var react_default = /*#__PURE__*/__webpack_require__.n(react_);
13746
- ;// CONCATENATED MODULE: ./contexts/GlossaryTerms.ts
13762
+ ;// ./contexts/GlossaryTerms.ts
13747
13763
 
13748
13764
  const GlossaryContext = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createContext)([]);
13749
13765
  /* harmony default export */ const GlossaryTerms = (GlossaryContext);
13750
13766
 
13751
- ;// CONCATENATED MODULE: ./components/Glossary/index.tsx
13767
+ ;// ./components/Glossary/index.tsx
13752
13768
 
13753
13769
 
13754
13770
 
@@ -13771,7 +13787,7 @@ const GlossaryWithContext = props => {
13771
13787
 
13772
13788
  // EXTERNAL MODULE: ./node_modules/react-dom/server.browser.js
13773
13789
  var server_browser = __webpack_require__(5848);
13774
- ;// CONCATENATED MODULE: ./components/HTMLBlock/index.tsx
13790
+ ;// ./components/HTMLBlock/index.tsx
13775
13791
 
13776
13792
 
13777
13793
  const MATCH_SCRIPT_TAGS = /<script\b[^>]*>([\s\S]*?)<\/script *>\n?/gim;
@@ -13802,7 +13818,7 @@ const HTMLBlock = ({ children = '', runScripts, safeMode = false }) => {
13802
13818
  };
13803
13819
  /* harmony default export */ const components_HTMLBlock = (HTMLBlock);
13804
13820
 
13805
- ;// CONCATENATED MODULE: ./components/Heading/index.tsx
13821
+ ;// ./components/Heading/index.tsx
13806
13822
  var Heading_rest = (undefined && undefined.__rest) || function (s, e) {
13807
13823
  var t = {};
13808
13824
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -13827,7 +13843,7 @@ const Heading = (_a) => {
13827
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}` }));
13828
13844
  /* harmony default export */ const components_Heading = (CreateHeading);
13829
13845
 
13830
- ;// CONCATENATED MODULE: ./components/Image/index.tsx
13846
+ ;// ./components/Image/index.tsx
13831
13847
 
13832
13848
  const Image = (Props) => {
13833
13849
  const { align = '', alt = '', border = false, caption, className = '', height = 'auto', src, title = '', width = 'auto', lazy = true, children, } = Props;
@@ -13870,7 +13886,7 @@ const Image = (Props) => {
13870
13886
  };
13871
13887
  /* harmony default export */ const components_Image = (Image);
13872
13888
 
13873
- ;// CONCATENATED MODULE: ./components/Table/index.tsx
13889
+ ;// ./components/Table/index.tsx
13874
13890
 
13875
13891
  const Table = (props) => {
13876
13892
  const { children } = props;
@@ -13880,7 +13896,7 @@ const Table = (props) => {
13880
13896
  };
13881
13897
  /* harmony default export */ const components_Table = (Table);
13882
13898
 
13883
- ;// CONCATENATED MODULE: ./components/Tabs/index.tsx
13899
+ ;// ./components/Tabs/index.tsx
13884
13900
 
13885
13901
 
13886
13902
  const Tab = ({ children }) => {
@@ -13897,7 +13913,7 @@ const Tabs = ({ children }) => {
13897
13913
  };
13898
13914
  /* harmony default export */ const components_Tabs = (Tabs);
13899
13915
 
13900
- ;// CONCATENATED MODULE: ./components/TableOfContents/index.tsx
13916
+ ;// ./components/TableOfContents/index.tsx
13901
13917
 
13902
13918
  function TableOfContents({ children }) {
13903
13919
  return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
@@ -13910,7 +13926,7 @@ function TableOfContents({ children }) {
13910
13926
  }
13911
13927
  /* harmony default export */ const components_TableOfContents = (TableOfContents);
13912
13928
 
13913
- ;// CONCATENATED MODULE: ./components/index.ts
13929
+ ;// ./components/index.ts
13914
13930
 
13915
13931
 
13916
13932
 
@@ -13950,7 +13966,7 @@ var es_object_get_own_property_descriptors = __webpack_require__(3101);
13950
13966
  var es_string_includes = __webpack_require__(3148);
13951
13967
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.for-each.js
13952
13968
  var web_dom_collections_for_each = __webpack_require__(8379);
13953
- ;// CONCATENATED MODULE: ./options.js
13969
+ ;// ./options.js
13954
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); }
13955
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; }
13956
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; }
@@ -14053,7 +14069,7 @@ var parseOptions = function parseOptions() {
14053
14069
  return opts;
14054
14070
  };
14055
14071
 
14056
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-string/lib/index.js
14072
+ ;// ./node_modules/mdast-util-to-string/lib/index.js
14057
14073
  /**
14058
14074
  * @typedef {import('mdast').Nodes} Nodes
14059
14075
  *
@@ -14163,7 +14179,7 @@ function node(value) {
14163
14179
  return Boolean(value && typeof value === 'object')
14164
14180
  }
14165
14181
 
14166
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-chunked/index.js
14182
+ ;// ./node_modules/micromark-util-chunked/index.js
14167
14183
  /**
14168
14184
  * Like `Array#splice`, but smarter for giant arrays.
14169
14185
  *
@@ -14246,7 +14262,7 @@ function push(list, items) {
14246
14262
  return items
14247
14263
  }
14248
14264
 
14249
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-subtokenize/index.js
14265
+ ;// ./node_modules/micromark-util-subtokenize/index.js
14250
14266
  /**
14251
14267
  * @typedef {import('micromark-util-types').Chunk} Chunk
14252
14268
  * @typedef {import('micromark-util-types').Event} Event
@@ -14472,7 +14488,7 @@ function subcontent(events, eventIndex) {
14472
14488
  return gaps
14473
14489
  }
14474
14490
 
14475
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/postprocess.js
14491
+ ;// ./node_modules/micromark/lib/postprocess.js
14476
14492
  /**
14477
14493
  * @typedef {import('micromark-util-types').Event} Event
14478
14494
  */
@@ -14490,7 +14506,7 @@ function postprocess(events) {
14490
14506
  return events
14491
14507
  }
14492
14508
 
14493
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-combine-extensions/index.js
14509
+ ;// ./node_modules/micromark-util-combine-extensions/index.js
14494
14510
  /**
14495
14511
  * @typedef {import('micromark-util-types').Extension} Extension
14496
14512
  * @typedef {import('micromark-util-types').Handles} Handles
@@ -14628,7 +14644,7 @@ function htmlExtension(all, extension) {
14628
14644
  }
14629
14645
  }
14630
14646
 
14631
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-character/index.js
14647
+ ;// ./node_modules/micromark-util-character/index.js
14632
14648
  /**
14633
14649
  * @typedef {import('micromark-util-types').Code} Code
14634
14650
  */
@@ -14873,7 +14889,7 @@ function regexCheck(regex) {
14873
14889
  return code !== null && code > -1 && regex.test(String.fromCharCode(code));
14874
14890
  }
14875
14891
  }
14876
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-space/index.js
14892
+ ;// ./node_modules/micromark-factory-space/index.js
14877
14893
  /**
14878
14894
  * @typedef {import('micromark-util-types').Effects} Effects
14879
14895
  * @typedef {import('micromark-util-types').State} State
@@ -14941,7 +14957,7 @@ function factorySpace(effects, ok, type, max) {
14941
14957
  }
14942
14958
  }
14943
14959
 
14944
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/initialize/content.js
14960
+ ;// ./node_modules/micromark/lib/initialize/content.js
14945
14961
  /**
14946
14962
  * @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
14947
14963
  * @typedef {import('micromark-util-types').Initializer} Initializer
@@ -15022,7 +15038,7 @@ function initializeContent(effects) {
15022
15038
  }
15023
15039
  }
15024
15040
 
15025
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/initialize/document.js
15041
+ ;// ./node_modules/micromark/lib/initialize/document.js
15026
15042
  /**
15027
15043
  * @typedef {import('micromark-util-types').Construct} Construct
15028
15044
  * @typedef {import('micromark-util-types').ContainerState} ContainerState
@@ -15406,7 +15422,7 @@ function tokenizeContainer(effects, ok, nok) {
15406
15422
  )
15407
15423
  }
15408
15424
 
15409
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/blank-line.js
15425
+ ;// ./node_modules/micromark-core-commonmark/lib/blank-line.js
15410
15426
  /**
15411
15427
  * @typedef {import('micromark-util-types').Construct} Construct
15412
15428
  * @typedef {import('micromark-util-types').State} State
@@ -15468,7 +15484,7 @@ function tokenizeBlankLine(effects, ok, nok) {
15468
15484
  }
15469
15485
  }
15470
15486
 
15471
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/content.js
15487
+ ;// ./node_modules/micromark-core-commonmark/lib/content.js
15472
15488
  /**
15473
15489
  * @typedef {import('micromark-util-types').Construct} Construct
15474
15490
  * @typedef {import('micromark-util-types').Resolver} Resolver
@@ -15638,7 +15654,7 @@ function tokenizeContinuation(effects, ok, nok) {
15638
15654
  }
15639
15655
  }
15640
15656
 
15641
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/initialize/flow.js
15657
+ ;// ./node_modules/micromark/lib/initialize/flow.js
15642
15658
  /**
15643
15659
  * @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
15644
15660
  * @typedef {import('micromark-util-types').Initializer} Initializer
@@ -15708,7 +15724,7 @@ function initializeFlow(effects) {
15708
15724
  }
15709
15725
  }
15710
15726
 
15711
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/initialize/text.js
15727
+ ;// ./node_modules/micromark/lib/initialize/text.js
15712
15728
  /**
15713
15729
  * @typedef {import('micromark-util-types').Code} Code
15714
15730
  * @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
@@ -15920,7 +15936,7 @@ function resolveAllLineSuffixes(events, context) {
15920
15936
  return events
15921
15937
  }
15922
15938
 
15923
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-resolve-all/index.js
15939
+ ;// ./node_modules/micromark-util-resolve-all/index.js
15924
15940
  /**
15925
15941
  * @typedef {import('micromark-util-types').Event} Event
15926
15942
  * @typedef {import('micromark-util-types').Resolver} Resolver
@@ -15956,7 +15972,7 @@ function resolveAll(constructs, events, context) {
15956
15972
  return events
15957
15973
  }
15958
15974
 
15959
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/create-tokenizer.js
15975
+ ;// ./node_modules/micromark/lib/create-tokenizer.js
15960
15976
  /**
15961
15977
  * @typedef {import('micromark-util-types').Chunk} Chunk
15962
15978
  * @typedef {import('micromark-util-types').Code} Code
@@ -16540,7 +16556,7 @@ function serializeChunks(chunks, expandTabs) {
16540
16556
  return result.join('')
16541
16557
  }
16542
16558
 
16543
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/thematic-break.js
16559
+ ;// ./node_modules/micromark-core-commonmark/lib/thematic-break.js
16544
16560
  /**
16545
16561
  * @typedef {import('micromark-util-types').Code} Code
16546
16562
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -16643,7 +16659,7 @@ function tokenizeThematicBreak(effects, ok, nok) {
16643
16659
  }
16644
16660
  }
16645
16661
 
16646
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/list.js
16662
+ ;// ./node_modules/micromark-core-commonmark/lib/list.js
16647
16663
  /**
16648
16664
  * @typedef {import('micromark-util-types').Code} Code
16649
16665
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -16913,7 +16929,7 @@ function tokenizeListItemPrefixWhitespace(effects, ok, nok) {
16913
16929
  }
16914
16930
  }
16915
16931
 
16916
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/block-quote.js
16932
+ ;// ./node_modules/micromark-core-commonmark/lib/block-quote.js
16917
16933
  /**
16918
16934
  * @typedef {import('micromark-util-types').Construct} Construct
16919
16935
  * @typedef {import('micromark-util-types').Exiter} Exiter
@@ -17061,7 +17077,7 @@ function exit(effects) {
17061
17077
  effects.exit('blockQuote')
17062
17078
  }
17063
17079
 
17064
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-destination/index.js
17080
+ ;// ./node_modules/micromark-factory-destination/index.js
17065
17081
  /**
17066
17082
  * @typedef {import('micromark-util-types').Effects} Effects
17067
17083
  * @typedef {import('micromark-util-types').State} State
@@ -17284,7 +17300,7 @@ function factoryDestination(
17284
17300
  }
17285
17301
  }
17286
17302
 
17287
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-label/index.js
17303
+ ;// ./node_modules/micromark-factory-label/index.js
17288
17304
  /**
17289
17305
  * @typedef {import('micromark-util-types').Effects} Effects
17290
17306
  * @typedef {import('micromark-util-types').State} State
@@ -17445,7 +17461,7 @@ function factoryLabel(effects, ok, nok, type, markerType, stringType) {
17445
17461
  }
17446
17462
  }
17447
17463
 
17448
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-title/index.js
17464
+ ;// ./node_modules/micromark-factory-title/index.js
17449
17465
  /**
17450
17466
  * @typedef {import('micromark-util-types').Code} Code
17451
17467
  * @typedef {import('micromark-util-types').Effects} Effects
@@ -17603,7 +17619,7 @@ function factoryTitle(effects, ok, nok, type, markerType, stringType) {
17603
17619
  }
17604
17620
  }
17605
17621
 
17606
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-whitespace/index.js
17622
+ ;// ./node_modules/micromark-factory-whitespace/index.js
17607
17623
  /**
17608
17624
  * @typedef {import('micromark-util-types').Effects} Effects
17609
17625
  * @typedef {import('micromark-util-types').State} State
@@ -17654,7 +17670,7 @@ function factoryWhitespace(effects, ok) {
17654
17670
  }
17655
17671
  }
17656
17672
 
17657
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-normalize-identifier/index.js
17673
+ ;// ./node_modules/micromark-util-normalize-identifier/index.js
17658
17674
  /**
17659
17675
  * Normalize an identifier (as found in references, definitions).
17660
17676
  *
@@ -17692,7 +17708,7 @@ function normalizeIdentifier(value) {
17692
17708
  )
17693
17709
  }
17694
17710
 
17695
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/definition.js
17711
+ ;// ./node_modules/micromark-core-commonmark/lib/definition.js
17696
17712
  /**
17697
17713
  * @typedef {import('micromark-util-types').Construct} Construct
17698
17714
  * @typedef {import('micromark-util-types').State} State
@@ -17976,7 +17992,7 @@ function tokenizeTitleBefore(effects, ok, nok) {
17976
17992
  }
17977
17993
  }
17978
17994
 
17979
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/code-indented.js
17995
+ ;// ./node_modules/micromark-core-commonmark/lib/code-indented.js
17980
17996
  /**
17981
17997
  * @typedef {import('micromark-util-types').Construct} Construct
17982
17998
  * @typedef {import('micromark-util-types').State} State
@@ -18161,7 +18177,7 @@ function tokenizeFurtherStart(effects, ok, nok) {
18161
18177
  }
18162
18178
  }
18163
18179
 
18164
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/heading-atx.js
18180
+ ;// ./node_modules/micromark-core-commonmark/lib/heading-atx.js
18165
18181
  /**
18166
18182
  * @typedef {import('micromark-util-types').Construct} Construct
18167
18183
  * @typedef {import('micromark-util-types').Resolver} Resolver
@@ -18368,7 +18384,7 @@ function tokenizeHeadingAtx(effects, ok, nok) {
18368
18384
  }
18369
18385
  }
18370
18386
 
18371
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/setext-underline.js
18387
+ ;// ./node_modules/micromark-core-commonmark/lib/setext-underline.js
18372
18388
  /**
18373
18389
  * @typedef {import('micromark-util-types').Code} Code
18374
18390
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -18552,7 +18568,7 @@ function tokenizeSetextUnderline(effects, ok, nok) {
18552
18568
  }
18553
18569
  }
18554
18570
 
18555
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-html-tag-name/index.js
18571
+ ;// ./node_modules/micromark-util-html-tag-name/index.js
18556
18572
  /**
18557
18573
  * List of lowercase HTML “block” tag names.
18558
18574
  *
@@ -18647,7 +18663,7 @@ const htmlBlockNames = [
18647
18663
  */
18648
18664
  const htmlRawNames = ['pre', 'script', 'style', 'textarea']
18649
18665
 
18650
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/html-flow.js
18666
+ ;// ./node_modules/micromark-core-commonmark/lib/html-flow.js
18651
18667
  /**
18652
18668
  * @typedef {import('micromark-util-types').Code} Code
18653
18669
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -19559,7 +19575,7 @@ function tokenizeBlankLineBefore(effects, ok, nok) {
19559
19575
  }
19560
19576
  }
19561
19577
 
19562
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/code-fenced.js
19578
+ ;// ./node_modules/micromark-core-commonmark/lib/code-fenced.js
19563
19579
  /**
19564
19580
  * @typedef {import('micromark-util-types').Code} Code
19565
19581
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -20041,7 +20057,7 @@ function tokenizeNonLazyContinuation(effects, ok, nok) {
20041
20057
  }
20042
20058
  }
20043
20059
 
20044
- ;// CONCATENATED MODULE: ./node_modules/decode-named-character-reference/index.dom.js
20060
+ ;// ./node_modules/decode-named-character-reference/index.dom.js
20045
20061
  /// <reference lib="dom" />
20046
20062
 
20047
20063
  /* eslint-env browser */
@@ -20076,7 +20092,7 @@ function decodeNamedCharacterReference(value) {
20076
20092
  return char === characterReference ? false : char
20077
20093
  }
20078
20094
 
20079
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/character-reference.js
20095
+ ;// ./node_modules/micromark-core-commonmark/lib/character-reference.js
20080
20096
  /**
20081
20097
  * @typedef {import('micromark-util-types').Code} Code
20082
20098
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -20227,7 +20243,7 @@ function tokenizeCharacterReference(effects, ok, nok) {
20227
20243
  }
20228
20244
  }
20229
20245
 
20230
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/character-escape.js
20246
+ ;// ./node_modules/micromark-core-commonmark/lib/character-escape.js
20231
20247
  /**
20232
20248
  * @typedef {import('micromark-util-types').Construct} Construct
20233
20249
  * @typedef {import('micromark-util-types').State} State
@@ -20290,7 +20306,7 @@ function tokenizeCharacterEscape(effects, ok, nok) {
20290
20306
  }
20291
20307
  }
20292
20308
 
20293
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/line-ending.js
20309
+ ;// ./node_modules/micromark-core-commonmark/lib/line-ending.js
20294
20310
  /**
20295
20311
  * @typedef {import('micromark-util-types').Construct} Construct
20296
20312
  * @typedef {import('micromark-util-types').State} State
@@ -20322,7 +20338,7 @@ function tokenizeLineEnding(effects, ok) {
20322
20338
  }
20323
20339
  }
20324
20340
 
20325
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/label-end.js
20341
+ ;// ./node_modules/micromark-core-commonmark/lib/label-end.js
20326
20342
  /**
20327
20343
  * @typedef {import('micromark-util-types').Construct} Construct
20328
20344
  * @typedef {import('micromark-util-types').Event} Event
@@ -20941,7 +20957,7 @@ function tokenizeReferenceCollapsed(effects, ok, nok) {
20941
20957
  }
20942
20958
  }
20943
20959
 
20944
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/label-start-image.js
20960
+ ;// ./node_modules/micromark-core-commonmark/lib/label-start-image.js
20945
20961
  /**
20946
20962
  * @typedef {import('micromark-util-types').Construct} Construct
20947
20963
  * @typedef {import('micromark-util-types').State} State
@@ -21044,7 +21060,7 @@ function tokenizeLabelStartImage(effects, ok, nok) {
21044
21060
  }
21045
21061
  }
21046
21062
 
21047
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-classify-character/index.js
21063
+ ;// ./node_modules/micromark-util-classify-character/index.js
21048
21064
  /**
21049
21065
  * @typedef {import('micromark-util-types').Code} Code
21050
21066
  */
@@ -21077,7 +21093,7 @@ function classifyCharacter(code) {
21077
21093
  }
21078
21094
  }
21079
21095
 
21080
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/attention.js
21096
+ ;// ./node_modules/micromark-core-commonmark/lib/attention.js
21081
21097
  /**
21082
21098
  * @typedef {import('micromark-util-types').Code} Code
21083
21099
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -21342,7 +21358,7 @@ function movePoint(point, offset) {
21342
21358
  point._bufferIndex += offset
21343
21359
  }
21344
21360
 
21345
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/autolink.js
21361
+ ;// ./node_modules/micromark-core-commonmark/lib/autolink.js
21346
21362
  /**
21347
21363
  * @typedef {import('micromark-util-types').Construct} Construct
21348
21364
  * @typedef {import('micromark-util-types').State} State
@@ -21574,7 +21590,7 @@ function tokenizeAutolink(effects, ok, nok) {
21574
21590
  }
21575
21591
  }
21576
21592
 
21577
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/html-text.js
21593
+ ;// ./node_modules/micromark-core-commonmark/lib/html-text.js
21578
21594
  /**
21579
21595
  * @typedef {import('micromark-util-types').Code} Code
21580
21596
  * @typedef {import('micromark-util-types').Construct} Construct
@@ -22283,7 +22299,7 @@ function tokenizeHtmlText(effects, ok, nok) {
22283
22299
  }
22284
22300
  }
22285
22301
 
22286
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/label-start-link.js
22302
+ ;// ./node_modules/micromark-core-commonmark/lib/label-start-link.js
22287
22303
  /**
22288
22304
  * @typedef {import('micromark-util-types').Construct} Construct
22289
22305
  * @typedef {import('micromark-util-types').State} State
@@ -22339,7 +22355,7 @@ function tokenizeLabelStartLink(effects, ok, nok) {
22339
22355
  }
22340
22356
  }
22341
22357
 
22342
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/hard-break-escape.js
22358
+ ;// ./node_modules/micromark-core-commonmark/lib/hard-break-escape.js
22343
22359
  /**
22344
22360
  * @typedef {import('micromark-util-types').Construct} Construct
22345
22361
  * @typedef {import('micromark-util-types').State} State
@@ -22398,7 +22414,7 @@ function tokenizeHardBreakEscape(effects, ok, nok) {
22398
22414
  }
22399
22415
  }
22400
22416
 
22401
- ;// CONCATENATED MODULE: ./node_modules/micromark-core-commonmark/lib/code-text.js
22417
+ ;// ./node_modules/micromark-core-commonmark/lib/code-text.js
22402
22418
  /**
22403
22419
  * @typedef {import('micromark-util-types').Construct} Construct
22404
22420
  * @typedef {import('micromark-util-types').Previous} Previous
@@ -22637,7 +22653,7 @@ function tokenizeCodeText(effects, ok, nok) {
22637
22653
  }
22638
22654
  }
22639
22655
 
22640
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/constructs.js
22656
+ ;// ./node_modules/micromark/lib/constructs.js
22641
22657
  /**
22642
22658
  * @typedef {import('micromark-util-types').Extension} Extension
22643
22659
  */
@@ -22724,7 +22740,7 @@ const disable = {
22724
22740
  null: []
22725
22741
  }
22726
22742
 
22727
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/parse.js
22743
+ ;// ./node_modules/micromark/lib/parse.js
22728
22744
  /**
22729
22745
  * @typedef {import('micromark-util-types').Create} Create
22730
22746
  * @typedef {import('micromark-util-types').FullNormalizedExtension} FullNormalizedExtension
@@ -22776,7 +22792,7 @@ function parse(options) {
22776
22792
  }
22777
22793
  }
22778
22794
 
22779
- ;// CONCATENATED MODULE: ./node_modules/micromark/lib/preprocess.js
22795
+ ;// ./node_modules/micromark/lib/preprocess.js
22780
22796
  /**
22781
22797
  * @typedef {import('micromark-util-types').Chunk} Chunk
22782
22798
  * @typedef {import('micromark-util-types').Code} Code
@@ -22891,7 +22907,7 @@ function preprocess() {
22891
22907
  }
22892
22908
  }
22893
22909
 
22894
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-decode-numeric-character-reference/index.js
22910
+ ;// ./node_modules/micromark-util-decode-numeric-character-reference/index.js
22895
22911
  /**
22896
22912
  * Turn the number (in string form as either hexa- or plain decimal) coming from
22897
22913
  * a numeric character reference into a character.
@@ -22924,7 +22940,7 @@ function decodeNumericCharacterReference(value, base) {
22924
22940
  }
22925
22941
  return String.fromCodePoint(code);
22926
22942
  }
22927
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-decode-string/index.js
22943
+ ;// ./node_modules/micromark-util-decode-string/index.js
22928
22944
 
22929
22945
 
22930
22946
  const characterEscapeOrReference =
@@ -22968,7 +22984,7 @@ function decode($0, $1, $2) {
22968
22984
  return decodeNamedCharacterReference($2) || $0
22969
22985
  }
22970
22986
 
22971
- ;// CONCATENATED MODULE: ./node_modules/unist-util-stringify-position/lib/index.js
22987
+ ;// ./node_modules/unist-util-stringify-position/lib/index.js
22972
22988
  /**
22973
22989
  * @typedef {import('unist').Node} Node
22974
22990
  * @typedef {import('unist').Point} Point
@@ -23054,7 +23070,7 @@ function index(value) {
23054
23070
  return value && typeof value === 'number' ? value : 1
23055
23071
  }
23056
23072
 
23057
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-from-markdown/lib/index.js
23073
+ ;// ./node_modules/mdast-util-from-markdown/lib/index.js
23058
23074
  /**
23059
23075
  * @typedef {import('mdast').Break} Break
23060
23076
  * @typedef {import('mdast').Blockquote} Blockquote
@@ -24408,7 +24424,7 @@ function defaultOnError(left, right) {
24408
24424
  }
24409
24425
  }
24410
24426
 
24411
- ;// CONCATENATED MODULE: ./node_modules/remark-parse/lib/index.js
24427
+ ;// ./node_modules/remark-parse/lib/index.js
24412
24428
  /**
24413
24429
  * @typedef {import('mdast').Root} Root
24414
24430
  * @typedef {import('mdast-util-from-markdown').Options} FromMarkdownOptions
@@ -24453,7 +24469,7 @@ function remarkParse(options) {
24453
24469
  }
24454
24470
  }
24455
24471
 
24456
- ;// CONCATENATED MODULE: ./node_modules/zwitch/index.js
24472
+ ;// ./node_modules/zwitch/index.js
24457
24473
  /**
24458
24474
  * @callback Handler
24459
24475
  * Handle a value, with a certain ID field set to a certain value.
@@ -24573,7 +24589,7 @@ function zwitch(key, options) {
24573
24589
  return one
24574
24590
  }
24575
24591
 
24576
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/configure.js
24592
+ ;// ./node_modules/mdast-util-to-markdown/lib/configure.js
24577
24593
  /**
24578
24594
  * @typedef {import('./types.js').Options} Options
24579
24595
  * @typedef {import('./types.js').State} State
@@ -24655,7 +24671,7 @@ function map(left, right) {
24655
24671
  }
24656
24672
  }
24657
24673
 
24658
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/blockquote.js
24674
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/blockquote.js
24659
24675
  /**
24660
24676
  * @typedef {import('mdast').Blockquote} Blockquote
24661
24677
  * @typedef {import('mdast').Parents} Parents
@@ -24689,7 +24705,7 @@ function blockquote_map(line, _, blank) {
24689
24705
  return '>' + (blank ? '' : ' ') + line
24690
24706
  }
24691
24707
 
24692
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js
24708
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js
24693
24709
  /**
24694
24710
  * @typedef {import('../types.js').ConstructName} ConstructName
24695
24711
  * @typedef {import('../types.js').Unsafe} Unsafe
@@ -24733,7 +24749,7 @@ function listInScope(stack, list, none) {
24733
24749
  return false
24734
24750
  }
24735
24751
 
24736
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/break.js
24752
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/break.js
24737
24753
  /**
24738
24754
  * @typedef {import('mdast').Break} Break
24739
24755
  * @typedef {import('mdast').Parents} Parents
@@ -24767,7 +24783,7 @@ function hardBreak(_, _1, state, info) {
24767
24783
  return '\\\n'
24768
24784
  }
24769
24785
 
24770
- ;// CONCATENATED MODULE: ./node_modules/longest-streak/index.js
24786
+ ;// ./node_modules/longest-streak/index.js
24771
24787
  /**
24772
24788
  * Get the count of the longest repeating streak of `substring` in `value`.
24773
24789
  *
@@ -24805,7 +24821,7 @@ function longestStreak(value, substring) {
24805
24821
  return max
24806
24822
  }
24807
24823
 
24808
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js
24824
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js
24809
24825
  /**
24810
24826
  * @typedef {import('mdast').Code} Code
24811
24827
  * @typedef {import('../types.js').State} State
@@ -24829,7 +24845,7 @@ function formatCodeAsIndented(node, state) {
24829
24845
  )
24830
24846
  }
24831
24847
 
24832
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-fence.js
24848
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-fence.js
24833
24849
  /**
24834
24850
  * @typedef {import('../types.js').Options} Options
24835
24851
  * @typedef {import('../types.js').State} State
@@ -24853,7 +24869,7 @@ function checkFence(state) {
24853
24869
  return marker
24854
24870
  }
24855
24871
 
24856
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/code.js
24872
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/code.js
24857
24873
  /**
24858
24874
  * @typedef {import('mdast').Code} Code
24859
24875
  * @typedef {import('mdast').Parents} Parents
@@ -24933,7 +24949,7 @@ function code_map(line, _, blank) {
24933
24949
  return (blank ? '' : ' ') + line
24934
24950
  }
24935
24951
 
24936
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-quote.js
24952
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-quote.js
24937
24953
  /**
24938
24954
  * @typedef {import('../types.js').Options} Options
24939
24955
  * @typedef {import('../types.js').State} State
@@ -24957,7 +24973,7 @@ function checkQuote(state) {
24957
24973
  return marker
24958
24974
  }
24959
24975
 
24960
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/definition.js
24976
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/definition.js
24961
24977
  /**
24962
24978
  * @typedef {import('mdast').Definition} Definition
24963
24979
  * @typedef {import('mdast').Parents} Parents
@@ -25037,7 +25053,7 @@ function definition_definition(node, _, state, info) {
25037
25053
  return value
25038
25054
  }
25039
25055
 
25040
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js
25056
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js
25041
25057
  /**
25042
25058
  * @typedef {import('../types.js').Options} Options
25043
25059
  * @typedef {import('../types.js').State} State
@@ -25061,7 +25077,7 @@ function checkEmphasis(state) {
25061
25077
  return marker
25062
25078
  }
25063
25079
 
25064
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/emphasis.js
25080
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/emphasis.js
25065
25081
  /**
25066
25082
  * @typedef {import('mdast').Emphasis} Emphasis
25067
25083
  * @typedef {import('mdast').Parents} Parents
@@ -25111,7 +25127,7 @@ function emphasisPeek(_, _1, state) {
25111
25127
  return state.options.emphasis || '*'
25112
25128
  }
25113
25129
 
25114
- ;// CONCATENATED MODULE: ./node_modules/unist-util-is/lib/index.js
25130
+ ;// ./node_modules/unist-util-is/lib/index.js
25115
25131
  /**
25116
25132
  * @typedef {import('unist').Node} Node
25117
25133
  * @typedef {import('unist').Parent} Parent
@@ -25404,7 +25420,7 @@ function looksLikeANode(value) {
25404
25420
  return value !== null && typeof value === 'object' && 'type' in value
25405
25421
  }
25406
25422
 
25407
- ;// CONCATENATED MODULE: ./node_modules/unist-util-visit-parents/lib/color.js
25423
+ ;// ./node_modules/unist-util-visit-parents/lib/color.js
25408
25424
  /**
25409
25425
  * @param {string} d
25410
25426
  * @returns {string}
@@ -25413,7 +25429,7 @@ function color(d) {
25413
25429
  return d
25414
25430
  }
25415
25431
 
25416
- ;// CONCATENATED MODULE: ./node_modules/unist-util-visit-parents/lib/index.js
25432
+ ;// ./node_modules/unist-util-visit-parents/lib/index.js
25417
25433
  /**
25418
25434
  * @typedef {import('unist').Node} UnistNode
25419
25435
  * @typedef {import('unist').Parent} UnistParent
@@ -25813,7 +25829,7 @@ function toResult(value) {
25813
25829
  return value === null || value === undefined ? empty : [value]
25814
25830
  }
25815
25831
 
25816
- ;// CONCATENATED MODULE: ./node_modules/unist-util-visit/lib/index.js
25832
+ ;// ./node_modules/unist-util-visit/lib/index.js
25817
25833
  /**
25818
25834
  * @typedef {import('unist').Node} UnistNode
25819
25835
  * @typedef {import('unist').Parent} UnistParent
@@ -26128,7 +26144,7 @@ function visit(tree, testOrVisitor, visitorOrReverse, maybeReverse) {
26128
26144
  }
26129
26145
  }
26130
26146
 
26131
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js
26147
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js
26132
26148
  /**
26133
26149
  * @typedef {import('mdast').Heading} Heading
26134
26150
  * @typedef {import('../types.js').State} State
@@ -26164,7 +26180,7 @@ function formatHeadingAsSetext(node, state) {
26164
26180
  )
26165
26181
  }
26166
26182
 
26167
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/heading.js
26183
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/heading.js
26168
26184
  /**
26169
26185
  * @typedef {import('mdast').Heading} Heading
26170
26186
  * @typedef {import('mdast').Parents} Parents
@@ -26246,7 +26262,7 @@ function heading(node, _, state, info) {
26246
26262
  return value
26247
26263
  }
26248
26264
 
26249
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/html.js
26265
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/html.js
26250
26266
  /**
26251
26267
  * @typedef {import('mdast').Html} Html
26252
26268
  */
@@ -26268,7 +26284,7 @@ function htmlPeek() {
26268
26284
  return '<'
26269
26285
  }
26270
26286
 
26271
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/image.js
26287
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/image.js
26272
26288
  /**
26273
26289
  * @typedef {import('mdast').Image} Image
26274
26290
  * @typedef {import('mdast').Parents} Parents
@@ -26354,7 +26370,7 @@ function imagePeek() {
26354
26370
  return '!'
26355
26371
  }
26356
26372
 
26357
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/image-reference.js
26373
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/image-reference.js
26358
26374
  /**
26359
26375
  * @typedef {import('mdast').ImageReference} ImageReference
26360
26376
  * @typedef {import('mdast').Parents} Parents
@@ -26421,7 +26437,7 @@ function imageReferencePeek() {
26421
26437
  return '!'
26422
26438
  }
26423
26439
 
26424
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/inline-code.js
26440
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/inline-code.js
26425
26441
  /**
26426
26442
  * @typedef {import('mdast').InlineCode} InlineCode
26427
26443
  * @typedef {import('mdast').Parents} Parents
@@ -26500,7 +26516,7 @@ function inlineCodePeek() {
26500
26516
  return '`'
26501
26517
  }
26502
26518
 
26503
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js
26519
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js
26504
26520
  /**
26505
26521
  * @typedef {import('mdast').Link} Link
26506
26522
  * @typedef {import('../types.js').State} State
@@ -26536,7 +26552,7 @@ function formatLinkAsAutolink(node, state) {
26536
26552
  )
26537
26553
  }
26538
26554
 
26539
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/link.js
26555
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/link.js
26540
26556
  /**
26541
26557
  * @typedef {import('mdast').Link} Link
26542
26558
  * @typedef {import('mdast').Parents} Parents
@@ -26654,7 +26670,7 @@ function linkPeek(node, _, state) {
26654
26670
  return formatLinkAsAutolink(node, state) ? '<' : '['
26655
26671
  }
26656
26672
 
26657
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/link-reference.js
26673
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/link-reference.js
26658
26674
  /**
26659
26675
  * @typedef {import('mdast').LinkReference} LinkReference
26660
26676
  * @typedef {import('mdast').Parents} Parents
@@ -26721,7 +26737,7 @@ function linkReferencePeek() {
26721
26737
  return '['
26722
26738
  }
26723
26739
 
26724
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-bullet.js
26740
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet.js
26725
26741
  /**
26726
26742
  * @typedef {import('../types.js').Options} Options
26727
26743
  * @typedef {import('../types.js').State} State
@@ -26745,7 +26761,7 @@ function checkBullet(state) {
26745
26761
  return marker
26746
26762
  }
26747
26763
 
26748
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js
26764
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js
26749
26765
  /**
26750
26766
  * @typedef {import('../types.js').Options} Options
26751
26767
  * @typedef {import('../types.js').State} State
@@ -26786,7 +26802,7 @@ function checkBulletOther(state) {
26786
26802
  return bulletOther
26787
26803
  }
26788
26804
 
26789
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js
26805
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js
26790
26806
  /**
26791
26807
  * @typedef {import('../types.js').Options} Options
26792
26808
  * @typedef {import('../types.js').State} State
@@ -26810,7 +26826,7 @@ function checkBulletOrdered(state) {
26810
26826
  return marker
26811
26827
  }
26812
26828
 
26813
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-rule.js
26829
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule.js
26814
26830
  /**
26815
26831
  * @typedef {import('../types.js').Options} Options
26816
26832
  * @typedef {import('../types.js').State} State
@@ -26834,7 +26850,7 @@ function checkRule(state) {
26834
26850
  return marker
26835
26851
  }
26836
26852
 
26837
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/list.js
26853
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/list.js
26838
26854
  /**
26839
26855
  * @typedef {import('mdast').List} List
26840
26856
  * @typedef {import('mdast').Parents} Parents
@@ -26938,7 +26954,7 @@ function list_list(node, parent, state, info) {
26938
26954
  return value
26939
26955
  }
26940
26956
 
26941
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js
26957
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js
26942
26958
  /**
26943
26959
  * @typedef {import('../types.js').Options} Options
26944
26960
  * @typedef {import('../types.js').State} State
@@ -26962,7 +26978,7 @@ function checkListItemIndent(state) {
26962
26978
  return style
26963
26979
  }
26964
26980
 
26965
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/list-item.js
26981
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/list-item.js
26966
26982
  /**
26967
26983
  * @typedef {import('mdast').ListItem} ListItem
26968
26984
  * @typedef {import('mdast').Parents} Parents
@@ -27029,7 +27045,7 @@ function listItem(node, parent, state, info) {
27029
27045
  }
27030
27046
  }
27031
27047
 
27032
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
27048
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
27033
27049
  /**
27034
27050
  * @typedef {import('mdast').Paragraph} Paragraph
27035
27051
  * @typedef {import('mdast').Parents} Parents
@@ -27053,7 +27069,7 @@ function paragraph(node, _, state, info) {
27053
27069
  return value
27054
27070
  }
27055
27071
 
27056
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-phrasing/lib/index.js
27072
+ ;// ./node_modules/mdast-util-phrasing/lib/index.js
27057
27073
  /**
27058
27074
  * @typedef {import('mdast').Html} Html
27059
27075
  * @typedef {import('mdast').PhrasingContent} PhrasingContent
@@ -27100,7 +27116,7 @@ const phrasing =
27100
27116
  ])
27101
27117
  )
27102
27118
 
27103
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/root.js
27119
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/root.js
27104
27120
  /**
27105
27121
  * @typedef {import('mdast').Parents} Parents
27106
27122
  * @typedef {import('mdast').Root} Root
@@ -27126,7 +27142,7 @@ function root(node, _, state, info) {
27126
27142
  return fn.call(state, node, info)
27127
27143
  }
27128
27144
 
27129
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-strong.js
27145
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-strong.js
27130
27146
  /**
27131
27147
  * @typedef {import('../types.js').Options} Options
27132
27148
  * @typedef {import('../types.js').State} State
@@ -27150,7 +27166,7 @@ function checkStrong(state) {
27150
27166
  return marker
27151
27167
  }
27152
27168
 
27153
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/strong.js
27169
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/strong.js
27154
27170
  /**
27155
27171
  * @typedef {import('mdast').Parents} Parents
27156
27172
  * @typedef {import('mdast').Strong} Strong
@@ -27200,7 +27216,7 @@ function strongPeek(_, _1, state) {
27200
27216
  return state.options.strong || '*'
27201
27217
  }
27202
27218
 
27203
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/text.js
27219
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/text.js
27204
27220
  /**
27205
27221
  * @typedef {import('mdast').Parents} Parents
27206
27222
  * @typedef {import('mdast').Text} Text
@@ -27219,7 +27235,7 @@ function handle_text_text(node, _, state, info) {
27219
27235
  return state.safe(node.value, info)
27220
27236
  }
27221
27237
 
27222
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js
27238
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js
27223
27239
  /**
27224
27240
  * @typedef {import('../types.js').Options} Options
27225
27241
  * @typedef {import('../types.js').State} State
@@ -27243,7 +27259,7 @@ function checkRuleRepetition(state) {
27243
27259
  return repetition
27244
27260
  }
27245
27261
 
27246
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js
27262
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js
27247
27263
  /**
27248
27264
  * @typedef {import('mdast').Parents} Parents
27249
27265
  * @typedef {import('mdast').ThematicBreak} ThematicBreak
@@ -27267,7 +27283,7 @@ function thematic_break_thematicBreak(_, _1, state) {
27267
27283
  return state.options.ruleSpaces ? value.slice(0, -1) : value
27268
27284
  }
27269
27285
 
27270
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/handle/index.js
27286
+ ;// ./node_modules/mdast-util-to-markdown/lib/handle/index.js
27271
27287
 
27272
27288
 
27273
27289
 
@@ -27314,7 +27330,7 @@ const handle = {
27314
27330
  thematicBreak: thematic_break_thematicBreak
27315
27331
  }
27316
27332
 
27317
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/join.js
27333
+ ;// ./node_modules/mdast-util-to-markdown/lib/join.js
27318
27334
  /**
27319
27335
  * @typedef {import('./types.js').Join} Join
27320
27336
  */
@@ -27355,7 +27371,7 @@ function joinDefaults(left, right, parent, state) {
27355
27371
  }
27356
27372
  }
27357
27373
 
27358
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/unsafe.js
27374
+ ;// ./node_modules/mdast-util-to-markdown/lib/unsafe.js
27359
27375
  /**
27360
27376
  * @typedef {import('./types.js').ConstructName} ConstructName
27361
27377
  * @typedef {import('./types.js').Unsafe} Unsafe
@@ -27504,7 +27520,7 @@ const unsafe = [
27504
27520
  {atBreak: true, character: '~'}
27505
27521
  ]
27506
27522
 
27507
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/association.js
27523
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/association.js
27508
27524
  /**
27509
27525
  * @typedef {import('../types.js').AssociationId} AssociationId
27510
27526
  */
@@ -27539,7 +27555,7 @@ function association(node) {
27539
27555
  return decodeString(node.identifier)
27540
27556
  }
27541
27557
 
27542
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js
27558
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js
27543
27559
  /**
27544
27560
  * @typedef {import('../types.js').CompilePattern} CompilePattern
27545
27561
  */
@@ -27565,7 +27581,7 @@ function compilePattern(pattern) {
27565
27581
  return pattern._compiled
27566
27582
  }
27567
27583
 
27568
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js
27584
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js
27569
27585
  /**
27570
27586
  * @typedef {import('../types.js').Handle} Handle
27571
27587
  * @typedef {import('../types.js').Info} Info
@@ -27663,7 +27679,7 @@ function containerPhrasing(parent, state, info) {
27663
27679
  return results.join('')
27664
27680
  }
27665
27681
 
27666
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/container-flow.js
27682
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/container-flow.js
27667
27683
  /**
27668
27684
  * @typedef {import('../types.js').FlowParents} FlowParents
27669
27685
  * @typedef {import('../types.js').FlowChildren} FlowChildren
@@ -27751,7 +27767,7 @@ function between(left, right, parent, state) {
27751
27767
  return '\n\n'
27752
27768
  }
27753
27769
 
27754
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/indent-lines.js
27770
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/indent-lines.js
27755
27771
  /**
27756
27772
  * @typedef {import('../types.js').IndentLines} IndentLines
27757
27773
  */
@@ -27788,7 +27804,7 @@ function indentLines(value, map) {
27788
27804
  }
27789
27805
  }
27790
27806
 
27791
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/safe.js
27807
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/safe.js
27792
27808
  /**
27793
27809
  * @typedef {import('../types.js').SafeConfig} SafeConfig
27794
27810
  * @typedef {import('../types.js').State} State
@@ -27966,7 +27982,7 @@ function escapeBackslashes(value, after) {
27966
27982
  return results.join('')
27967
27983
  }
27968
27984
 
27969
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/util/track.js
27985
+ ;// ./node_modules/mdast-util-to-markdown/lib/util/track.js
27970
27986
  /**
27971
27987
  * @typedef {import('../types.js').CreateTracker} CreateTracker
27972
27988
  * @typedef {import('../types.js').TrackCurrent} TrackCurrent
@@ -28026,7 +28042,7 @@ function track(config) {
28026
28042
  }
28027
28043
  }
28028
28044
 
28029
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-markdown/lib/index.js
28045
+ ;// ./node_modules/mdast-util-to-markdown/lib/index.js
28030
28046
  /**
28031
28047
  * @typedef {import('mdast').Nodes} Nodes
28032
28048
  * @typedef {import('./types.js').Enter} Enter
@@ -28221,7 +28237,7 @@ function safeBound(value, config) {
28221
28237
  return safe(this, value, config)
28222
28238
  }
28223
28239
 
28224
- ;// CONCATENATED MODULE: ./node_modules/remark-stringify/lib/index.js
28240
+ ;// ./node_modules/remark-stringify/lib/index.js
28225
28241
  /**
28226
28242
  * @typedef {import('mdast').Root} Root
28227
28243
  * @typedef {import('mdast-util-to-markdown').Options} ToMarkdownOptions
@@ -28265,7 +28281,7 @@ function remarkStringify(options) {
28265
28281
  }
28266
28282
  }
28267
28283
 
28268
- ;// CONCATENATED MODULE: ./node_modules/bail/index.js
28284
+ ;// ./node_modules/bail/index.js
28269
28285
  /**
28270
28286
  * Throw a given error.
28271
28287
  *
@@ -28282,7 +28298,7 @@ function bail(error) {
28282
28298
  // EXTERNAL MODULE: ./node_modules/extend/index.js
28283
28299
  var extend = __webpack_require__(2849);
28284
28300
  var extend_default = /*#__PURE__*/__webpack_require__.n(extend);
28285
- ;// CONCATENATED MODULE: ./node_modules/devlop/lib/default.js
28301
+ ;// ./node_modules/devlop/lib/default.js
28286
28302
  function deprecate(fn) {
28287
28303
  return fn
28288
28304
  }
@@ -28293,7 +28309,7 @@ function default_ok() {}
28293
28309
 
28294
28310
  function unreachable() {}
28295
28311
 
28296
- ;// CONCATENATED MODULE: ./node_modules/unified/node_modules/is-plain-obj/index.js
28312
+ ;// ./node_modules/unified/node_modules/is-plain-obj/index.js
28297
28313
  function isPlainObject(value) {
28298
28314
  if (typeof value !== 'object' || value === null) {
28299
28315
  return false;
@@ -28303,7 +28319,7 @@ function isPlainObject(value) {
28303
28319
  return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
28304
28320
  }
28305
28321
 
28306
- ;// CONCATENATED MODULE: ./node_modules/trough/lib/index.js
28322
+ ;// ./node_modules/trough/lib/index.js
28307
28323
  // To do: remove `void`s
28308
28324
  // To do: remove `null` from output of our APIs, allow it as user APIs.
28309
28325
 
@@ -28511,7 +28527,7 @@ function wrap(middleware, callback) {
28511
28527
  }
28512
28528
  }
28513
28529
 
28514
- ;// CONCATENATED MODULE: ./node_modules/vfile-message/lib/index.js
28530
+ ;// ./node_modules/vfile-message/lib/index.js
28515
28531
  /**
28516
28532
  * @typedef {import('unist').Node} Node
28517
28533
  * @typedef {import('unist').Point} Point
@@ -28831,7 +28847,7 @@ VFileMessage.prototype.place = undefined
28831
28847
  VFileMessage.prototype.ruleId = undefined
28832
28848
  VFileMessage.prototype.source = undefined
28833
28849
 
28834
- ;// CONCATENATED MODULE: ./node_modules/vfile/lib/minpath.browser.js
28850
+ ;// ./node_modules/vfile/lib/minpath.browser.js
28835
28851
  // A derivative work based on:
28836
28852
  // <https://github.com/browserify/path-browserify>.
28837
28853
  // Which is licensed:
@@ -29255,7 +29271,7 @@ function assertPath(path) {
29255
29271
 
29256
29272
  /* eslint-enable max-depth, complexity */
29257
29273
 
29258
- ;// CONCATENATED MODULE: ./node_modules/vfile/lib/minproc.browser.js
29274
+ ;// ./node_modules/vfile/lib/minproc.browser.js
29259
29275
  // Somewhat based on:
29260
29276
  // <https://github.com/defunctzombie/node-process/blob/master/browser.js>.
29261
29277
  // But I don’t think one tiny line of code can be copyrighted. 😅
@@ -29265,7 +29281,7 @@ function cwd() {
29265
29281
  return '/'
29266
29282
  }
29267
29283
 
29268
- ;// CONCATENATED MODULE: ./node_modules/vfile/lib/minurl.shared.js
29284
+ ;// ./node_modules/vfile/lib/minurl.shared.js
29269
29285
  /**
29270
29286
  * Checks if a value has the shape of a WHATWG URL object.
29271
29287
  *
@@ -29298,7 +29314,7 @@ function isUrl(fileUrlOrPath) {
29298
29314
  )
29299
29315
  }
29300
29316
 
29301
- ;// CONCATENATED MODULE: ./node_modules/vfile/lib/minurl.browser.js
29317
+ ;// ./node_modules/vfile/lib/minurl.browser.js
29302
29318
 
29303
29319
 
29304
29320
 
@@ -29376,7 +29392,7 @@ function getPathFromURLPosix(url) {
29376
29392
  return decodeURIComponent(pathname)
29377
29393
  }
29378
29394
 
29379
- ;// CONCATENATED MODULE: ./node_modules/vfile/lib/index.js
29395
+ ;// ./node_modules/vfile/lib/index.js
29380
29396
  /**
29381
29397
  * @typedef {import('unist').Node} Node
29382
29398
  * @typedef {import('unist').Point} Point
@@ -30081,7 +30097,7 @@ function isUint8Array(value) {
30081
30097
  )
30082
30098
  }
30083
30099
 
30084
- ;// CONCATENATED MODULE: ./node_modules/unified/lib/callable-instance.js
30100
+ ;// ./node_modules/unified/lib/callable-instance.js
30085
30101
  const CallableInstance =
30086
30102
  /**
30087
30103
  * @type {new <Parameters extends Array<unknown>, Result>(property: string | symbol) => (...parameters: Parameters) => Result}
@@ -30122,7 +30138,7 @@ const CallableInstance =
30122
30138
  )
30123
30139
  )
30124
30140
 
30125
- ;// CONCATENATED MODULE: ./node_modules/unified/lib/index.js
30141
+ ;// ./node_modules/unified/lib/index.js
30126
30142
  /**
30127
30143
  * @typedef {import('trough').Pipeline} Pipeline
30128
30144
  *
@@ -31447,7 +31463,7 @@ function lib_isUint8Array(value) {
31447
31463
  )
31448
31464
  }
31449
31465
 
31450
- ;// CONCATENATED MODULE: ./node_modules/remark/index.js
31466
+ ;// ./node_modules/remark/index.js
31451
31467
  // Note: types exposed from `index.d.ts`
31452
31468
 
31453
31469
 
@@ -31459,7 +31475,7 @@ function lib_isUint8Array(value) {
31459
31475
  */
31460
31476
  const remark = unified().use(remarkParse).use(remarkStringify).freeze()
31461
31477
 
31462
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-mdx-expression/lib/index.js
31478
+ ;// ./node_modules/mdast-util-mdx-expression/lib/index.js
31463
31479
  /**
31464
31480
  * @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
31465
31481
  * @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
@@ -31572,7 +31588,7 @@ function handleMdxExpression(node) {
31572
31588
  return '{' + value + '}'
31573
31589
  }
31574
31590
 
31575
- ;// CONCATENATED MODULE: ./node_modules/ccount/index.js
31591
+ ;// ./node_modules/ccount/index.js
31576
31592
  /**
31577
31593
  * Count how often a character (or substring) is used in a string.
31578
31594
  *
@@ -31601,7 +31617,7 @@ function ccount(value, character) {
31601
31617
  return count
31602
31618
  }
31603
31619
 
31604
- ;// CONCATENATED MODULE: ./node_modules/character-entities-legacy/index.js
31620
+ ;// ./node_modules/character-entities-legacy/index.js
31605
31621
  /**
31606
31622
  * List of legacy HTML named character references that don’t need a trailing semicolon.
31607
31623
  *
@@ -31716,7 +31732,7 @@ const characterEntitiesLegacy = [
31716
31732
  'yuml'
31717
31733
  ]
31718
31734
 
31719
- ;// CONCATENATED MODULE: ./node_modules/character-reference-invalid/index.js
31735
+ ;// ./node_modules/character-reference-invalid/index.js
31720
31736
  /**
31721
31737
  * Map of invalid numeric character references to their replacements, according to HTML.
31722
31738
  *
@@ -31753,7 +31769,7 @@ const characterReferenceInvalid = {
31753
31769
  159: 'Ÿ'
31754
31770
  }
31755
31771
 
31756
- ;// CONCATENATED MODULE: ./node_modules/is-decimal/index.js
31772
+ ;// ./node_modules/is-decimal/index.js
31757
31773
  /**
31758
31774
  * Check if the given character code, or the character code at the first
31759
31775
  * character, is decimal.
@@ -31768,7 +31784,7 @@ function isDecimal(character) {
31768
31784
  return code >= 48 && code <= 57 /* 0-9 */
31769
31785
  }
31770
31786
 
31771
- ;// CONCATENATED MODULE: ./node_modules/is-hexadecimal/index.js
31787
+ ;// ./node_modules/is-hexadecimal/index.js
31772
31788
  /**
31773
31789
  * Check if the given character code, or the character code at the first
31774
31790
  * character, is hexadecimal.
@@ -31787,7 +31803,7 @@ function isHexadecimal(character) {
31787
31803
  )
31788
31804
  }
31789
31805
 
31790
- ;// CONCATENATED MODULE: ./node_modules/is-alphabetical/index.js
31806
+ ;// ./node_modules/is-alphabetical/index.js
31791
31807
  /**
31792
31808
  * Check if the given character code, or the character code at the first
31793
31809
  * character, is alphabetical.
@@ -31805,7 +31821,7 @@ function isAlphabetical(character) {
31805
31821
  )
31806
31822
  }
31807
31823
 
31808
- ;// CONCATENATED MODULE: ./node_modules/is-alphanumerical/index.js
31824
+ ;// ./node_modules/is-alphanumerical/index.js
31809
31825
 
31810
31826
 
31811
31827
 
@@ -31820,7 +31836,7 @@ function isAlphanumerical(character) {
31820
31836
  return isAlphabetical(character) || isDecimal(character)
31821
31837
  }
31822
31838
 
31823
- ;// CONCATENATED MODULE: ./node_modules/parse-entities/lib/index.js
31839
+ ;// ./node_modules/parse-entities/lib/index.js
31824
31840
  /**
31825
31841
  * @typedef {import('unist').Point} Point
31826
31842
  * @typedef {import('unist').Position} Position
@@ -32228,7 +32244,7 @@ function disallowed(code) {
32228
32244
  )
32229
32245
  }
32230
32246
 
32231
- ;// CONCATENATED MODULE: ./node_modules/stringify-entities/lib/core.js
32247
+ ;// ./node_modules/stringify-entities/lib/core.js
32232
32248
  /**
32233
32249
  * @typedef CoreOptions
32234
32250
  * @property {ReadonlyArray<string>} [subset=[]]
@@ -32347,7 +32363,7 @@ function charactersToExpression(subset) {
32347
32363
  return new RegExp('(?:' + groups.join('|') + ')', 'g')
32348
32364
  }
32349
32365
 
32350
- ;// CONCATENATED MODULE: ./node_modules/stringify-entities/lib/util/format-basic.js
32366
+ ;// ./node_modules/stringify-entities/lib/util/format-basic.js
32351
32367
  /**
32352
32368
  * The smallest way to encode a character.
32353
32369
  *
@@ -32358,7 +32374,7 @@ function formatBasic(code) {
32358
32374
  return '&#x' + code.toString(16).toUpperCase() + ';'
32359
32375
  }
32360
32376
 
32361
- ;// CONCATENATED MODULE: ./node_modules/stringify-entities/lib/index.js
32377
+ ;// ./node_modules/stringify-entities/lib/index.js
32362
32378
  /**
32363
32379
  * @typedef {import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions} Options
32364
32380
  * @typedef {import('./core.js').CoreOptions} LightOptions
@@ -32396,7 +32412,7 @@ function stringifyEntitiesLight(value, options) {
32396
32412
  return core_core(value, Object.assign({format: formatBasic}, options))
32397
32413
  }
32398
32414
 
32399
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-mdx-jsx/lib/index.js
32415
+ ;// ./node_modules/mdast-util-mdx-jsx/lib/index.js
32400
32416
  /**
32401
32417
  * @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
32402
32418
  * @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
@@ -33196,7 +33212,7 @@ function peekElement() {
33196
33212
  return '<'
33197
33213
  }
33198
33214
 
33199
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-mdxjs-esm/lib/index.js
33215
+ ;// ./node_modules/mdast-util-mdxjs-esm/lib/index.js
33200
33216
  /**
33201
33217
  * @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
33202
33218
  * @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
@@ -33285,7 +33301,7 @@ function handleMdxjsEsm(node) {
33285
33301
  return node.value || ''
33286
33302
  }
33287
33303
 
33288
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-mdx/lib/index.js
33304
+ ;// ./node_modules/mdast-util-mdx/lib/index.js
33289
33305
  /**
33290
33306
  * @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
33291
33307
  * @typedef {import('mdast-util-mdx-jsx').ToMarkdownOptions} ToMarkdownOptions
@@ -33335,7 +33351,7 @@ function mdxToMarkdown(options) {
33335
33351
  }
33336
33352
  }
33337
33353
 
33338
- ;// CONCATENATED MODULE: ./node_modules/acorn/dist/acorn.mjs
33354
+ ;// ./node_modules/acorn/dist/acorn.mjs
33339
33355
  // This file was generated. Do not modify manually!
33340
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];
33341
33357
 
@@ -39376,7 +39392,7 @@ function tokenizer(input, options) {
39376
39392
  // EXTERNAL MODULE: ./node_modules/acorn-jsx/index.js
39377
39393
  var acorn_jsx = __webpack_require__(9214);
39378
39394
  var acorn_jsx_default = /*#__PURE__*/__webpack_require__.n(acorn_jsx);
39379
- ;// CONCATENATED MODULE: ./node_modules/estree-util-visit/lib/color.default.js
39395
+ ;// ./node_modules/estree-util-visit/lib/color.default.js
39380
39396
  /**
39381
39397
  * @param {string} d
39382
39398
  * @returns {string}
@@ -39385,7 +39401,7 @@ function color_default_color(d) {
39385
39401
  return d
39386
39402
  }
39387
39403
 
39388
- ;// CONCATENATED MODULE: ./node_modules/estree-util-visit/lib/index.js
39404
+ ;// ./node_modules/estree-util-visit/lib/index.js
39389
39405
  /**
39390
39406
  * @typedef {import('estree-jsx').Node} Node
39391
39407
  */
@@ -39616,7 +39632,7 @@ function nodelike(value) {
39616
39632
  )
39617
39633
  }
39618
39634
 
39619
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-events-to-acorn/index.js
39635
+ ;// ./node_modules/micromark-util-events-to-acorn/index.js
39620
39636
  /**
39621
39637
  * @typedef {import('acorn').Comment} Comment
39622
39638
  * @typedef {import('acorn').Node} AcornNode
@@ -40036,7 +40052,7 @@ function micromark_util_events_to_acorn_serializeChunks(chunks) {
40036
40052
  }
40037
40053
  return result.join('');
40038
40054
  }
40039
- ;// CONCATENATED MODULE: ./node_modules/unist-util-position-from-estree/lib/index.js
40055
+ ;// ./node_modules/unist-util-position-from-estree/lib/index.js
40040
40056
  /**
40041
40057
  * @typedef {import('unist').Point} UnistPoint
40042
40058
  * @typedef {import('unist').Position} UnistPosition
@@ -40115,7 +40131,7 @@ function numberOrUndefined(value) {
40115
40131
  return typeof value === 'number' && value > -1 ? value : undefined
40116
40132
  }
40117
40133
 
40118
- ;// CONCATENATED MODULE: ./node_modules/micromark-factory-mdx-expression/index.js
40134
+ ;// ./node_modules/micromark-factory-mdx-expression/index.js
40119
40135
  /**
40120
40136
  * @typedef {import('estree').Program} Program
40121
40137
  * @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
@@ -40497,7 +40513,7 @@ function mdxExpressionParse(
40497
40513
  }
40498
40514
  }
40499
40515
 
40500
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-expression/lib/syntax.js
40516
+ ;// ./node_modules/micromark-extension-mdx-expression/lib/syntax.js
40501
40517
  /**
40502
40518
  * @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
40503
40519
  * @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
@@ -40725,7 +40741,7 @@ function mdxExpression(options) {
40725
40741
  }
40726
40742
  }
40727
40743
  }
40728
- ;// CONCATENATED MODULE: ./node_modules/estree-util-is-identifier-name/lib/index.js
40744
+ ;// ./node_modules/estree-util-is-identifier-name/lib/index.js
40729
40745
  /**
40730
40746
  * @typedef Options
40731
40747
  * Configuration.
@@ -40788,7 +40804,7 @@ function lib_name(name, options) {
40788
40804
  return re.test(name)
40789
40805
  }
40790
40806
 
40791
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-jsx/lib/factory-tag.js
40807
+ ;// ./node_modules/micromark-extension-mdx-jsx/lib/factory-tag.js
40792
40808
  /**
40793
40809
  * @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
40794
40810
  * @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
@@ -41613,7 +41629,7 @@ function factoryTag(effects, ok, nok, acorn, acornOptions, addResult, allowLazy,
41613
41629
  function serializeCharCode(code) {
41614
41630
  return 'U+' + code.toString(16).toUpperCase().padStart(4, '0');
41615
41631
  }
41616
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-jsx/lib/jsx-text.js
41632
+ ;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-text.js
41617
41633
  /**
41618
41634
  * @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
41619
41635
  * @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
@@ -41664,7 +41680,7 @@ function jsxText(acorn, options) {
41664
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');
41665
41681
  }
41666
41682
  }
41667
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-jsx/lib/jsx-flow.js
41683
+ ;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-flow.js
41668
41684
  /**
41669
41685
  * @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
41670
41686
  * @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
@@ -41790,7 +41806,7 @@ function jsxFlow(acorn, options) {
41790
41806
  }
41791
41807
  }
41792
41808
  }
41793
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-jsx/lib/syntax.js
41809
+ ;// ./node_modules/micromark-extension-mdx-jsx/lib/syntax.js
41794
41810
  /**
41795
41811
  * @typedef {import('micromark-util-types').Extension} Extension
41796
41812
  * @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
@@ -41855,7 +41871,7 @@ function mdxJsx(options) {
41855
41871
  }
41856
41872
  };
41857
41873
  }
41858
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdx-md/index.js
41874
+ ;// ./node_modules/micromark-extension-mdx-md/index.js
41859
41875
  /**
41860
41876
  * @typedef {import('micromark-util-types').Extension} Extension
41861
41877
  */
@@ -41874,7 +41890,7 @@ function mdxMd() {
41874
41890
  }
41875
41891
  }
41876
41892
 
41877
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdxjs-esm/lib/syntax.js
41893
+ ;// ./node_modules/micromark-extension-mdxjs-esm/lib/syntax.js
41878
41894
  /**
41879
41895
  * @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
41880
41896
  * @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
@@ -42142,7 +42158,7 @@ function tokenizeNextBlank(effects, ok, nok) {
42142
42158
  return effects.attempt(blankLine, ok, nok);
42143
42159
  }
42144
42160
  }
42145
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-mdxjs/index.js
42161
+ ;// ./node_modules/micromark-extension-mdxjs/index.js
42146
42162
  /**
42147
42163
  * @typedef {import('micromark-extension-mdx-expression').Options} Options
42148
42164
  * @typedef {import('micromark-util-types').Extension} Extension
@@ -42183,7 +42199,7 @@ function mdxjs(options) {
42183
42199
  ])
42184
42200
  }
42185
42201
 
42186
- ;// CONCATENATED MODULE: ./node_modules/remark-mdx/lib/index.js
42202
+ ;// ./node_modules/remark-mdx/lib/index.js
42187
42203
  /**
42188
42204
  * @typedef {import('mdast-util-mdx').ToMarkdownOptions} ToMarkdownOptions
42189
42205
  * @typedef {import('micromark-extension-mdxjs').Options} MicromarkOptions
@@ -42232,7 +42248,7 @@ function remarkMdx(options) {
42232
42248
  // EXTERNAL MODULE: ./node_modules/format/format.js
42233
42249
  var format_format = __webpack_require__(6311);
42234
42250
  var format_default = /*#__PURE__*/__webpack_require__.n(format_format);
42235
- ;// CONCATENATED MODULE: ./node_modules/fault/index.js
42251
+ ;// ./node_modules/fault/index.js
42236
42252
  // @ts-expect-error
42237
42253
 
42238
42254
 
@@ -42275,7 +42291,7 @@ function create(Constructor) {
42275
42291
  }
42276
42292
  }
42277
42293
 
42278
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-frontmatter/lib/to-matters.js
42294
+ ;// ./node_modules/micromark-extension-frontmatter/lib/to-matters.js
42279
42295
  /**
42280
42296
  * @typedef {'toml' | 'yaml'} Preset
42281
42297
  * Known name of a frontmatter style.
@@ -42401,7 +42417,7 @@ function matter(option) {
42401
42417
  return result
42402
42418
  }
42403
42419
 
42404
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp/index.js
42420
+ ;// ./node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp/index.js
42405
42421
  function escapeStringRegexp(string) {
42406
42422
  if (typeof string !== 'string') {
42407
42423
  throw new TypeError('Expected a string');
@@ -42414,7 +42430,7 @@ function escapeStringRegexp(string) {
42414
42430
  .replace(/-/g, '\\x2d');
42415
42431
  }
42416
42432
 
42417
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-frontmatter/lib/index.js
42433
+ ;// ./node_modules/mdast-util-frontmatter/lib/index.js
42418
42434
  /**
42419
42435
  * @typedef {import('mdast').Literal} Literal
42420
42436
  *
@@ -42592,7 +42608,7 @@ function pick(schema, prop) {
42592
42608
  return typeof schema === 'string' ? schema : schema[prop]
42593
42609
  }
42594
42610
 
42595
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-frontmatter/lib/syntax.js
42611
+ ;// ./node_modules/micromark-extension-frontmatter/lib/syntax.js
42596
42612
  /**
42597
42613
  * @typedef {import('micromark-util-types').Construct} Construct
42598
42614
  * @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
@@ -42988,7 +43004,7 @@ function syntax_pick(schema, prop) {
42988
43004
  return typeof schema === 'string' ? schema : schema[prop]
42989
43005
  }
42990
43006
 
42991
- ;// CONCATENATED MODULE: ./node_modules/remark-frontmatter/lib/index.js
43007
+ ;// ./node_modules/remark-frontmatter/lib/index.js
42992
43008
  /// <reference types="remark-parse" />
42993
43009
  /// <reference types="remark-stringify" />
42994
43010
 
@@ -43035,7 +43051,7 @@ function remarkFrontmatter(options) {
43035
43051
  toMarkdownExtensions.push(frontmatterToMarkdown(settings))
43036
43052
  }
43037
43053
 
43038
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js
43054
+ ;// ./node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js
43039
43055
  function escape_string_regexp_escapeStringRegexp(string) {
43040
43056
  if (typeof string !== 'string') {
43041
43057
  throw new TypeError('Expected a string');
@@ -43048,7 +43064,7 @@ function escape_string_regexp_escapeStringRegexp(string) {
43048
43064
  .replace(/-/g, '\\x2d');
43049
43065
  }
43050
43066
 
43051
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-find-and-replace/lib/index.js
43067
+ ;// ./node_modules/mdast-util-find-and-replace/lib/index.js
43052
43068
  /**
43053
43069
  * @typedef {import('mdast').Nodes} Nodes
43054
43070
  * @typedef {import('mdast').Parents} Parents
@@ -43316,7 +43332,7 @@ function toFunction(replace) {
43316
43332
  }
43317
43333
  }
43318
43334
 
43319
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm-autolink-literal/lib/index.js
43335
+ ;// ./node_modules/mdast-util-gfm-autolink-literal/lib/index.js
43320
43336
  /**
43321
43337
  * @typedef {import('mdast').Link} Link
43322
43338
  * @typedef {import('mdast').PhrasingContent} PhrasingContent
@@ -43606,7 +43622,7 @@ function lib_previous(match, email) {
43606
43622
  )
43607
43623
  }
43608
43624
 
43609
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm-footnote/lib/index.js
43625
+ ;// ./node_modules/mdast-util-gfm-footnote/lib/index.js
43610
43626
  /**
43611
43627
  * @typedef {import('mdast').FootnoteDefinition} FootnoteDefinition
43612
43628
  * @typedef {import('mdast').FootnoteReference} FootnoteReference
@@ -43806,7 +43822,7 @@ function lib_map(line, index, blank) {
43806
43822
  return (blank ? '' : ' ') + line
43807
43823
  }
43808
43824
 
43809
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm-strikethrough/lib/index.js
43825
+ ;// ./node_modules/mdast-util-gfm-strikethrough/lib/index.js
43810
43826
  /**
43811
43827
  * @typedef {import('mdast').Delete} Delete
43812
43828
  *
@@ -43914,7 +43930,7 @@ function peekDelete() {
43914
43930
  return '~'
43915
43931
  }
43916
43932
 
43917
- ;// CONCATENATED MODULE: ./node_modules/markdown-table/index.js
43933
+ ;// ./node_modules/markdown-table/index.js
43918
43934
  /**
43919
43935
  * @typedef Options
43920
43936
  * Configuration (optional).
@@ -44296,7 +44312,7 @@ function toAlignment(value) {
44296
44312
  : 0
44297
44313
  }
44298
44314
 
44299
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm-table/lib/index.js
44315
+ ;// ./node_modules/mdast-util-gfm-table/lib/index.js
44300
44316
  /**
44301
44317
  * @typedef {import('mdast').InlineCode} InlineCode
44302
44318
  * @typedef {import('mdast').Table} Table
@@ -44598,7 +44614,7 @@ function gfmTableToMarkdown(options) {
44598
44614
  }
44599
44615
  }
44600
44616
 
44601
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm-task-list-item/lib/index.js
44617
+ ;// ./node_modules/mdast-util-gfm-task-list-item/lib/index.js
44602
44618
  /**
44603
44619
  * @typedef {import('mdast').ListItem} ListItem
44604
44620
  * @typedef {import('mdast').Paragraph} Paragraph
@@ -44741,7 +44757,7 @@ function listItemWithTaskListItem(node, parent, state, info) {
44741
44757
  }
44742
44758
  }
44743
44759
 
44744
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-gfm/lib/index.js
44760
+ ;// ./node_modules/mdast-util-gfm/lib/index.js
44745
44761
  /**
44746
44762
  * @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
44747
44763
  * @typedef {import('mdast-util-to-markdown').Options} ToMarkdownExtension
@@ -44798,7 +44814,7 @@ function gfmToMarkdown(options) {
44798
44814
  }
44799
44815
  }
44800
44816
 
44801
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js
44817
+ ;// ./node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js
44802
44818
  /**
44803
44819
  * @typedef {import('micromark-util-types').Code} Code
44804
44820
  * @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
@@ -45750,7 +45766,7 @@ function previousUnbalanced(events) {
45750
45766
  return result
45751
45767
  }
45752
45768
 
45753
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-footnote/lib/syntax.js
45769
+ ;// ./node_modules/micromark-extension-gfm-footnote/lib/syntax.js
45754
45770
  /**
45755
45771
  * @typedef {import('micromark-util-types').Event} Event
45756
45772
  * @typedef {import('micromark-util-types').Exiter} Exiter
@@ -46281,7 +46297,7 @@ function syntax_tokenizeIndent(effects, ok, nok) {
46281
46297
  }
46282
46298
  }
46283
46299
 
46284
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js
46300
+ ;// ./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js
46285
46301
  /**
46286
46302
  * @typedef {import('micromark-util-types').Event} Event
46287
46303
  * @typedef {import('micromark-util-types').Extension} Extension
@@ -46464,7 +46480,7 @@ function gfmStrikethrough(options) {
46464
46480
  }
46465
46481
  }
46466
46482
 
46467
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-table/lib/edit-map.js
46483
+ ;// ./node_modules/micromark-extension-gfm-table/lib/edit-map.js
46468
46484
  /**
46469
46485
  * @typedef {import('micromark-util-types').Event} Event
46470
46486
  */
@@ -46669,7 +46685,7 @@ function addImpl(editMap, at, remove, add) {
46669
46685
  // }
46670
46686
  // }
46671
46687
 
46672
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-table/lib/infer.js
46688
+ ;// ./node_modules/micromark-extension-gfm-table/lib/infer.js
46673
46689
  /**
46674
46690
  * @typedef {import('micromark-util-types').Event} Event
46675
46691
  */
@@ -46727,7 +46743,7 @@ function gfmTableAlign(events, index) {
46727
46743
  return align
46728
46744
  }
46729
46745
 
46730
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-table/lib/syntax.js
46746
+ ;// ./node_modules/micromark-extension-gfm-table/lib/syntax.js
46731
46747
  /**
46732
46748
  * @typedef {import('micromark-util-types').Event} Event
46733
46749
  * @typedef {import('micromark-util-types').Extension} Extension
@@ -47608,7 +47624,7 @@ function getPoint(events, index) {
47608
47624
  return event[1][side]
47609
47625
  }
47610
47626
 
47611
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js
47627
+ ;// ./node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js
47612
47628
  /**
47613
47629
  * @typedef {import('micromark-util-types').Extension} Extension
47614
47630
  * @typedef {import('micromark-util-types').State} State
@@ -47775,7 +47791,7 @@ function spaceThenNonSpace(effects, ok, nok) {
47775
47791
  }
47776
47792
  }
47777
47793
 
47778
- ;// CONCATENATED MODULE: ./node_modules/micromark-extension-gfm/index.js
47794
+ ;// ./node_modules/micromark-extension-gfm/index.js
47779
47795
  /**
47780
47796
  * @typedef {import('micromark-extension-gfm-footnote').HtmlOptions} HtmlOptions
47781
47797
  * @typedef {import('micromark-extension-gfm-strikethrough').Options} Options
@@ -47834,7 +47850,7 @@ function gfmHtml(options) {
47834
47850
  ])
47835
47851
  }
47836
47852
 
47837
- ;// CONCATENATED MODULE: ./node_modules/remark-gfm/lib/index.js
47853
+ ;// ./node_modules/remark-gfm/lib/index.js
47838
47854
  /// <reference types="remark-parse" />
47839
47855
  /// <reference types="remark-stringify" />
47840
47856
 
@@ -47884,13 +47900,13 @@ function remarkGfm(options) {
47884
47900
  toMarkdownExtensions.push(gfmToMarkdown(settings))
47885
47901
  }
47886
47902
 
47887
- ;// CONCATENATED MODULE: ./node_modules/emoji-regex/index.mjs
47903
+ ;// ./node_modules/emoji-regex/index.mjs
47888
47904
  /* harmony default export */ const emoji_regex = (() => {
47889
47905
  // https://mths.be/emoji
47890
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;
47891
47907
  });
47892
47908
 
47893
- ;// CONCATENATED MODULE: ./enums.ts
47909
+ ;// ./enums.ts
47894
47910
  var NodeTypes;
47895
47911
  (function (NodeTypes) {
47896
47912
  NodeTypes["callout"] = "rdme-callout";
@@ -47909,7 +47925,7 @@ var NodeTypes;
47909
47925
  NodeTypes["variable"] = "readme-variable";
47910
47926
  })(NodeTypes || (NodeTypes = {}));
47911
47927
 
47912
- ;// CONCATENATED MODULE: ./processor/transform/callouts.ts
47928
+ ;// ./processor/transform/callouts.ts
47913
47929
 
47914
47930
 
47915
47931
 
@@ -47941,7 +47957,7 @@ const calloutTransformer = () => {
47941
47957
  };
47942
47958
  /* harmony default export */ const callouts = (calloutTransformer);
47943
47959
 
47944
- ;// CONCATENATED MODULE: ./processor/transform/code-tabs.ts
47960
+ ;// ./processor/transform/code-tabs.ts
47945
47961
 
47946
47962
 
47947
47963
  const isCode = (node) => (node === null || node === void 0 ? void 0 : node.type) === 'code';
@@ -47990,7 +48006,7 @@ const codeTabsTransformer = ({ copyButtons } = {}) => (tree) => {
47990
48006
  };
47991
48007
  /* harmony default export */ const code_tabs = (codeTabsTransformer);
47992
48008
 
47993
- ;// CONCATENATED MODULE: ./processor/transform/embeds.ts
48009
+ ;// ./processor/transform/embeds.ts
47994
48010
 
47995
48011
 
47996
48012
  const embedTransformer = () => {
@@ -48020,7 +48036,7 @@ const embedTransformer = () => {
48020
48036
  };
48021
48037
  /* harmony default export */ const transform_embeds = (embedTransformer);
48022
48038
 
48023
- ;// CONCATENATED MODULE: ./lib/mdast.ts
48039
+ ;// ./lib/mdast.ts
48024
48040
 
48025
48041
  const mdast = (text, opts = {}) => {
48026
48042
  const processor = ast_processor(opts);
@@ -48029,7 +48045,7 @@ const mdast = (text, opts = {}) => {
48029
48045
  };
48030
48046
  /* harmony default export */ const lib_mdast = (mdast);
48031
48047
 
48032
- ;// CONCATENATED MODULE: ./processor/utils.ts
48048
+ ;// ./processor/utils.ts
48033
48049
 
48034
48050
  /**
48035
48051
  * Formats the hProperties of a node as a string, so they can be compiled back into JSX/MDX.
@@ -48204,7 +48220,7 @@ const toAttributes = (object, keys = []) => {
48204
48220
  return attributes;
48205
48221
  };
48206
48222
 
48207
- ;// CONCATENATED MODULE: ./processor/transform/images.ts
48223
+ ;// ./processor/transform/images.ts
48208
48224
 
48209
48225
 
48210
48226
 
@@ -48244,7 +48260,7 @@ const imageTransformer = () => (tree) => {
48244
48260
  };
48245
48261
  /* harmony default export */ const transform_images = (imageTransformer);
48246
48262
 
48247
- ;// CONCATENATED MODULE: ./node_modules/gemoji/index.js
48263
+ ;// ./node_modules/gemoji/index.js
48248
48264
  /**
48249
48265
  * @typedef Gemoji
48250
48266
  * @property {string} emoji
@@ -65156,7 +65172,7 @@ const emojiToName = {
65156
65172
  '🏴󠁧󠁢󠁷󠁬󠁳󠁿': 'wales'
65157
65173
  }
65158
65174
 
65159
- ;// CONCATENATED MODULE: ./lib/owlmoji.ts
65175
+ ;// ./lib/owlmoji.ts
65160
65176
 
65161
65177
  const owlmoji = ['owlbert-books', 'owlbert-mask', 'owlbert', 'owlbert-reading', 'owlbert-thinking'];
65162
65178
  class Owlmoji {
@@ -65173,7 +65189,7 @@ Owlmoji.kind = (name) => {
65173
65189
  Owlmoji.nameToEmoji = nameToEmoji;
65174
65190
  /* harmony default export */ const lib_owlmoji = (Owlmoji);
65175
65191
 
65176
- ;// CONCATENATED MODULE: ./processor/transform/gemoji+.ts
65192
+ ;// ./processor/transform/gemoji+.ts
65177
65193
 
65178
65194
 
65179
65195
 
@@ -65228,7 +65244,7 @@ const gemojiTransformer = () => (tree) => {
65228
65244
  };
65229
65245
  /* harmony default export */ const gemoji_ = (gemojiTransformer);
65230
65246
 
65231
- ;// CONCATENATED MODULE: ./processor/transform/div.ts
65247
+ ;// ./processor/transform/div.ts
65232
65248
  var div_rest = (undefined && undefined.__rest) || function (s, e) {
65233
65249
  var t = {};
65234
65250
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -65261,7 +65277,7 @@ const divTransformer = () => tree => {
65261
65277
  };
65262
65278
  /* harmony default export */ const div = (divTransformer);
65263
65279
 
65264
- ;// CONCATENATED MODULE: ./processor/transform/inject-components.ts
65280
+ ;// ./processor/transform/inject-components.ts
65265
65281
 
65266
65282
 
65267
65283
  const inject = ({ components } = {}) => (node, index, parent) => {
@@ -65276,7 +65292,7 @@ const injectComponents = (opts) => () => tree => {
65276
65292
  };
65277
65293
  /* harmony default export */ const inject_components = (injectComponents);
65278
65294
 
65279
- ;// CONCATENATED MODULE: ./processor/transform/readme-components.ts
65295
+ ;// ./processor/transform/readme-components.ts
65280
65296
 
65281
65297
 
65282
65298
 
@@ -65429,7 +65445,7 @@ const readmeComponents = (opts) => () => tree => {
65429
65445
  };
65430
65446
  /* harmony default export */ const readme_components = (readmeComponents);
65431
65447
 
65432
- ;// CONCATENATED MODULE: ./processor/transform/readme-to-mdx.ts
65448
+ ;// ./processor/transform/readme-to-mdx.ts
65433
65449
 
65434
65450
 
65435
65451
 
@@ -65514,7 +65530,7 @@ const readmeToMdx = () => tree => {
65514
65530
  };
65515
65531
  /* harmony default export */ const readme_to_mdx = (readmeToMdx);
65516
65532
 
65517
- ;// CONCATENATED MODULE: ./processor/transform/variables.ts
65533
+ ;// ./processor/transform/variables.ts
65518
65534
 
65519
65535
 
65520
65536
  const variables = ({ asMdx } = { asMdx: true }) => tree => {
@@ -65555,7 +65571,7 @@ const variables = ({ asMdx } = { asMdx: true }) => tree => {
65555
65571
  };
65556
65572
  /* harmony default export */ const transform_variables = (variables);
65557
65573
 
65558
- ;// CONCATENATED MODULE: ./processor/transform/tables-to-jsx.ts
65574
+ ;// ./processor/transform/tables-to-jsx.ts
65559
65575
 
65560
65576
 
65561
65577
  const alignToStyle = (align) => {
@@ -65647,7 +65663,7 @@ const tablesToJsx = () => tree => {
65647
65663
  };
65648
65664
  /* harmony default export */ const tables_to_jsx = (tablesToJsx);
65649
65665
 
65650
- ;// CONCATENATED MODULE: ./processor/transform/compatability.ts
65666
+ ;// ./processor/transform/compatability.ts
65651
65667
 
65652
65668
 
65653
65669
  const strongTest = (node) => ['emphasis', 'strong'].includes(node.type);
@@ -65672,7 +65688,7 @@ const compatibilityTransfomer = () => tree => {
65672
65688
  };
65673
65689
  /* harmony default export */ const compatability = (compatibilityTransfomer);
65674
65690
 
65675
- ;// CONCATENATED MODULE: ./processor/transform/mermaid.ts
65691
+ ;// ./processor/transform/mermaid.ts
65676
65692
 
65677
65693
  const mermaidTransformer = () => (tree) => {
65678
65694
  visit(tree, 'element', (node) => {
@@ -65687,7 +65703,7 @@ const mermaidTransformer = () => (tree) => {
65687
65703
  };
65688
65704
  /* harmony default export */ const transform_mermaid = (mermaidTransformer);
65689
65705
 
65690
- ;// CONCATENATED MODULE: ./processor/transform/index.ts
65706
+ ;// ./processor/transform/index.ts
65691
65707
 
65692
65708
 
65693
65709
 
@@ -65711,12 +65727,12 @@ const defaultTransforms = {
65711
65727
  };
65712
65728
  /* harmony default export */ const transform = (Object.values(defaultTransforms));
65713
65729
 
65714
- ;// CONCATENATED MODULE: ./node_modules/rehype-slug/node_modules/github-slugger/regex.js
65730
+ ;// ./node_modules/rehype-slug/node_modules/github-slugger/regex.js
65715
65731
  // This module is generated by `script/`.
65716
65732
  /* eslint-disable no-control-regex, no-misleading-character-class, no-useless-escape */
65717
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
65718
65734
 
65719
- ;// CONCATENATED MODULE: ./node_modules/rehype-slug/node_modules/github-slugger/index.js
65735
+ ;// ./node_modules/rehype-slug/node_modules/github-slugger/index.js
65720
65736
 
65721
65737
 
65722
65738
  const github_slugger_own = Object.hasOwnProperty
@@ -65795,7 +65811,7 @@ function slug (value, maintainCase) {
65795
65811
  return value.replace(regex_regex, '').replace(/ /g, '-')
65796
65812
  }
65797
65813
 
65798
- ;// CONCATENATED MODULE: ./node_modules/rehype-slug/node_modules/hast-util-heading-rank/lib/index.js
65814
+ ;// ./node_modules/rehype-slug/node_modules/hast-util-heading-rank/lib/index.js
65799
65815
  /**
65800
65816
  * @typedef {import('hast').Nodes} Nodes
65801
65817
  */
@@ -65819,7 +65835,7 @@ function headingRank(node) {
65819
65835
  : undefined
65820
65836
  }
65821
65837
 
65822
- ;// CONCATENATED MODULE: ./node_modules/rehype-slug/node_modules/hast-util-to-string/lib/index.js
65838
+ ;// ./node_modules/rehype-slug/node_modules/hast-util-to-string/lib/index.js
65823
65839
  /**
65824
65840
  * @typedef {import('hast').Nodes} Nodes
65825
65841
  * @typedef {import('hast').Parents} Parents
@@ -65876,7 +65892,7 @@ function hast_util_to_string_lib_all(node) {
65876
65892
  return result.join('')
65877
65893
  }
65878
65894
 
65879
- ;// CONCATENATED MODULE: ./node_modules/rehype-slug/lib/index.js
65895
+ ;// ./node_modules/rehype-slug/lib/index.js
65880
65896
  /**
65881
65897
  * @typedef {import('hast').Root} Root
65882
65898
  */
@@ -65926,7 +65942,7 @@ function rehypeSlug(options) {
65926
65942
  }
65927
65943
  }
65928
65944
 
65929
- ;// CONCATENATED MODULE: ./lib/ast-processor.ts
65945
+ ;// ./lib/ast-processor.ts
65930
65946
 
65931
65947
 
65932
65948
 
@@ -65943,7 +65959,7 @@ const astProcessor = (opts = { components: {} }) => remark()
65943
65959
  .use(readme_components({ components: opts.components }));
65944
65960
  /* harmony default export */ const ast_processor = (astProcessor);
65945
65961
 
65946
- ;// CONCATENATED MODULE: ./node_modules/markdown-extensions/index.js
65962
+ ;// ./node_modules/markdown-extensions/index.js
65947
65963
  // TODO: Load the JSON file when Node.js supports that.
65948
65964
 
65949
65965
  const markdownExtension = [
@@ -65959,7 +65975,7 @@ const markdownExtension = [
65959
65975
 
65960
65976
  /* harmony default export */ const markdown_extensions = (markdownExtension);
65961
65977
 
65962
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/extnames.js
65978
+ ;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
65963
65979
 
65964
65980
 
65965
65981
  const md = markdown_extensions.map(function (d) {
@@ -65967,7 +65983,7 @@ const md = markdown_extensions.map(function (d) {
65967
65983
  })
65968
65984
  const mdx = (/* unused pure expression or super */ null && (['.mdx']))
65969
65985
 
65970
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
65986
+ ;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
65971
65987
  /**
65972
65988
  * @typedef {import('vfile').Compatible} Compatible
65973
65989
  * @typedef {import('../compile.js').CompileOptions} CompileOptions
@@ -66022,7 +66038,7 @@ function resolve_file_and_options_looksLikeAVFile(value) {
66022
66038
  )
66023
66039
  }
66024
66040
 
66025
- ;// CONCATENATED MODULE: ./node_modules/@ungap/structured-clone/esm/types.js
66041
+ ;// ./node_modules/@ungap/structured-clone/esm/types.js
66026
66042
  const VOID = -1;
66027
66043
  const PRIMITIVE = 0;
66028
66044
  const ARRAY = 1;
@@ -66035,7 +66051,7 @@ const ERROR = 7;
66035
66051
  const BIGINT = 8;
66036
66052
  // export const SYMBOL = 9;
66037
66053
 
66038
- ;// CONCATENATED MODULE: ./node_modules/@ungap/structured-clone/esm/deserialize.js
66054
+ ;// ./node_modules/@ungap/structured-clone/esm/deserialize.js
66039
66055
 
66040
66056
 
66041
66057
  const env = typeof self === 'object' ? self : globalThis;
@@ -66111,7 +66127,7 @@ const deserializer = ($, _) => {
66111
66127
  */
66112
66128
  const deserialize = serialized => deserializer(new Map, serialized)(0);
66113
66129
 
66114
- ;// CONCATENATED MODULE: ./node_modules/@ungap/structured-clone/esm/serialize.js
66130
+ ;// ./node_modules/@ungap/structured-clone/esm/serialize.js
66115
66131
 
66116
66132
 
66117
66133
  const EMPTY = '';
@@ -66269,7 +66285,7 @@ const serializer = (strict, json, $, _) => {
66269
66285
  return serializer(!(json || lossy), !!json, new Map, _)(value), _;
66270
66286
  };
66271
66287
 
66272
- ;// CONCATENATED MODULE: ./node_modules/@ungap/structured-clone/esm/index.js
66288
+ ;// ./node_modules/@ungap/structured-clone/esm/index.js
66273
66289
 
66274
66290
 
66275
66291
 
@@ -66296,7 +66312,7 @@ const serializer = (strict, json, $, _) => {
66296
66312
 
66297
66313
 
66298
66314
 
66299
- ;// CONCATENATED MODULE: ./node_modules/micromark-util-sanitize-uri/index.js
66315
+ ;// ./node_modules/micromark-util-sanitize-uri/index.js
66300
66316
 
66301
66317
 
66302
66318
  /**
@@ -66412,7 +66428,7 @@ function normalizeUri(value) {
66412
66428
  return result.join('') + value.slice(start)
66413
66429
  }
66414
66430
 
66415
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/footer.js
66431
+ ;// ./node_modules/mdast-util-to-hast/lib/footer.js
66416
66432
  /**
66417
66433
  * @typedef {import('hast').Element} Element
66418
66434
  * @typedef {import('hast').ElementContent} ElementContent
@@ -66664,7 +66680,7 @@ function footer(state) {
66664
66680
  }
66665
66681
  }
66666
66682
 
66667
- ;// CONCATENATED MODULE: ./node_modules/unist-util-position/lib/index.js
66683
+ ;// ./node_modules/unist-util-position/lib/index.js
66668
66684
  /**
66669
66685
  * @typedef {import('unist').Node} Node
66670
66686
  * @typedef {import('unist').Point} Point
@@ -66761,7 +66777,7 @@ function lib_position(node) {
66761
66777
  }
66762
66778
  }
66763
66779
 
66764
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/blockquote.js
66780
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/blockquote.js
66765
66781
  /**
66766
66782
  * @typedef {import('hast').Element} Element
66767
66783
  * @typedef {import('mdast').Blockquote} Blockquote
@@ -66793,7 +66809,7 @@ function blockquote_blockquote(state, node) {
66793
66809
  return state.applyData(node, result)
66794
66810
  }
66795
66811
 
66796
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/break.js
66812
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/break.js
66797
66813
  /**
66798
66814
  * @typedef {import('hast').Element} Element
66799
66815
  * @typedef {import('hast').Text} Text
@@ -66821,7 +66837,7 @@ function break_hardBreak(state, node) {
66821
66837
  return [state.applyData(node, result), {type: 'text', value: '\n'}]
66822
66838
  }
66823
66839
 
66824
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/code.js
66840
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/code.js
66825
66841
  /**
66826
66842
  * @typedef {import('hast').Element} Element
66827
66843
  * @typedef {import('hast').Properties} Properties
@@ -66873,7 +66889,7 @@ function code_code(state, node) {
66873
66889
  return result
66874
66890
  }
66875
66891
 
66876
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/delete.js
66892
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/delete.js
66877
66893
  /**
66878
66894
  * @typedef {import('hast').Element} Element
66879
66895
  * @typedef {import('mdast').Delete} Delete
@@ -66905,7 +66921,7 @@ function strikethrough(state, node) {
66905
66921
  return state.applyData(node, result)
66906
66922
  }
66907
66923
 
66908
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/emphasis.js
66924
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/emphasis.js
66909
66925
  /**
66910
66926
  * @typedef {import('hast').Element} Element
66911
66927
  * @typedef {import('mdast').Emphasis} Emphasis
@@ -66937,7 +66953,7 @@ function emphasis_emphasis(state, node) {
66937
66953
  return state.applyData(node, result)
66938
66954
  }
66939
66955
 
66940
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js
66956
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js
66941
66957
  /**
66942
66958
  * @typedef {import('hast').Element} Element
66943
66959
  * @typedef {import('mdast').FootnoteReference} FootnoteReference
@@ -67009,7 +67025,7 @@ function footnote_reference_footnoteReference(state, node) {
67009
67025
  return state.applyData(node, sup)
67010
67026
  }
67011
67027
 
67012
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/heading.js
67028
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/heading.js
67013
67029
  /**
67014
67030
  * @typedef {import('hast').Element} Element
67015
67031
  * @typedef {import('mdast').Heading} Heading
@@ -67041,7 +67057,7 @@ function heading_heading(state, node) {
67041
67057
  return state.applyData(node, result)
67042
67058
  }
67043
67059
 
67044
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/html.js
67060
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/html.js
67045
67061
  /**
67046
67062
  * @typedef {import('hast').Element} Element
67047
67063
  * @typedef {import('mdast').Html} Html
@@ -67074,7 +67090,7 @@ function html_html(state, node) {
67074
67090
  return undefined
67075
67091
  }
67076
67092
 
67077
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/revert.js
67093
+ ;// ./node_modules/mdast-util-to-hast/lib/revert.js
67078
67094
  /**
67079
67095
  * @typedef {import('hast').ElementContent} ElementContent
67080
67096
  *
@@ -67131,7 +67147,7 @@ function revert(state, node) {
67131
67147
  return contents
67132
67148
  }
67133
67149
 
67134
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/image-reference.js
67150
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/image-reference.js
67135
67151
  /**
67136
67152
  * @typedef {import('hast').Element} Element
67137
67153
  * @typedef {import('hast').ElementContent} ElementContent
@@ -67174,7 +67190,7 @@ function image_reference_imageReference(state, node) {
67174
67190
  return state.applyData(node, result)
67175
67191
  }
67176
67192
 
67177
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/image.js
67193
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/image.js
67178
67194
  /**
67179
67195
  * @typedef {import('hast').Element} Element
67180
67196
  * @typedef {import('hast').Properties} Properties
@@ -67212,7 +67228,7 @@ function handlers_image_image(state, node) {
67212
67228
  return state.applyData(node, result)
67213
67229
  }
67214
67230
 
67215
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
67231
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
67216
67232
  /**
67217
67233
  * @typedef {import('hast').Element} Element
67218
67234
  * @typedef {import('hast').Text} Text
@@ -67249,7 +67265,7 @@ function inline_code_inlineCode(state, node) {
67249
67265
  return state.applyData(node, result)
67250
67266
  }
67251
67267
 
67252
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/link-reference.js
67268
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/link-reference.js
67253
67269
  /**
67254
67270
  * @typedef {import('hast').Element} Element
67255
67271
  * @typedef {import('hast').ElementContent} ElementContent
@@ -67297,7 +67313,7 @@ function link_reference_linkReference(state, node) {
67297
67313
  return state.applyData(node, result)
67298
67314
  }
67299
67315
 
67300
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/link.js
67316
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/link.js
67301
67317
  /**
67302
67318
  * @typedef {import('hast').Element} Element
67303
67319
  * @typedef {import('hast').Properties} Properties
@@ -67336,7 +67352,7 @@ function handlers_link_link(state, node) {
67336
67352
  return state.applyData(node, result)
67337
67353
  }
67338
67354
 
67339
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/list-item.js
67355
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/list-item.js
67340
67356
  /**
67341
67357
  * @typedef {import('hast').Element} Element
67342
67358
  * @typedef {import('hast').ElementContent} ElementContent
@@ -67463,7 +67479,7 @@ function listItemLoose(node) {
67463
67479
  : spread
67464
67480
  }
67465
67481
 
67466
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/list.js
67482
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/list.js
67467
67483
  /**
67468
67484
  * @typedef {import('hast').Element} Element
67469
67485
  * @typedef {import('hast').Properties} Properties
@@ -67521,7 +67537,7 @@ function handlers_list_list(state, node) {
67521
67537
  return state.applyData(node, result)
67522
67538
  }
67523
67539
 
67524
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/paragraph.js
67540
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/paragraph.js
67525
67541
  /**
67526
67542
  * @typedef {import('hast').Element} Element
67527
67543
  * @typedef {import('mdast').Paragraph} Paragraph
@@ -67553,7 +67569,7 @@ function paragraph_paragraph(state, node) {
67553
67569
  return state.applyData(node, result)
67554
67570
  }
67555
67571
 
67556
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/root.js
67572
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/root.js
67557
67573
  /**
67558
67574
  * @typedef {import('hast').Parents} HastParents
67559
67575
  * @typedef {import('hast').Root} HastRoot
@@ -67581,7 +67597,7 @@ function root_root(state, node) {
67581
67597
  return state.applyData(node, result)
67582
67598
  }
67583
67599
 
67584
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/strong.js
67600
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/strong.js
67585
67601
  /**
67586
67602
  * @typedef {import('hast').Element} Element
67587
67603
  * @typedef {import('mdast').Strong} Strong
@@ -67613,7 +67629,7 @@ function strong_strong(state, node) {
67613
67629
  return state.applyData(node, result)
67614
67630
  }
67615
67631
 
67616
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/table.js
67632
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/table.js
67617
67633
  /**
67618
67634
  * @typedef {import('hast').Element} Element
67619
67635
  * @typedef {import('mdast').Table} Table
@@ -67676,7 +67692,7 @@ function table(state, node) {
67676
67692
  return state.applyData(node, result)
67677
67693
  }
67678
67694
 
67679
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/table-row.js
67695
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/table-row.js
67680
67696
  /**
67681
67697
  * @typedef {import('hast').Element} Element
67682
67698
  * @typedef {import('hast').ElementContent} ElementContent
@@ -67747,7 +67763,7 @@ function tableRow(state, node, parent) {
67747
67763
  return state.applyData(node, result)
67748
67764
  }
67749
67765
 
67750
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/table-cell.js
67766
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/table-cell.js
67751
67767
  /**
67752
67768
  * @typedef {import('hast').Element} Element
67753
67769
  * @typedef {import('mdast').TableCell} TableCell
@@ -67781,7 +67797,7 @@ function tableCell(state, node) {
67781
67797
  return state.applyData(node, result)
67782
67798
  }
67783
67799
 
67784
- ;// CONCATENATED MODULE: ./node_modules/trim-lines/index.js
67800
+ ;// ./node_modules/trim-lines/index.js
67785
67801
  const tab = 9 /* `\t` */
67786
67802
  const space = 32 /* ` ` */
67787
67803
 
@@ -67852,7 +67868,7 @@ function trimLine(value, start, end) {
67852
67868
  return endIndex > startIndex ? value.slice(startIndex, endIndex) : ''
67853
67869
  }
67854
67870
 
67855
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/text.js
67871
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/text.js
67856
67872
  /**
67857
67873
  * @typedef {import('hast').Element} HastElement
67858
67874
  * @typedef {import('hast').Text} HastText
@@ -67879,7 +67895,7 @@ function handlers_text_text(state, node) {
67879
67895
  return state.applyData(node, result)
67880
67896
  }
67881
67897
 
67882
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js
67898
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js
67883
67899
  /**
67884
67900
  * @typedef {import('hast').Element} Element
67885
67901
  * @typedef {import('mdast').ThematicBreak} ThematicBreak
@@ -67911,7 +67927,7 @@ function handlers_thematic_break_thematicBreak(state, node) {
67911
67927
  return state.applyData(node, result)
67912
67928
  }
67913
67929
 
67914
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/handlers/index.js
67930
+ ;// ./node_modules/mdast-util-to-hast/lib/handlers/index.js
67915
67931
 
67916
67932
 
67917
67933
 
@@ -67977,7 +67993,7 @@ function ignore() {
67977
67993
  return undefined
67978
67994
  }
67979
67995
 
67980
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/state.js
67996
+ ;// ./node_modules/mdast-util-to-hast/lib/state.js
67981
67997
  /**
67982
67998
  * @typedef {import('hast').Element} HastElement
67983
67999
  * @typedef {import('hast').ElementContent} HastElementContent
@@ -68452,7 +68468,7 @@ function trimMarkdownSpaceStart(value) {
68452
68468
  return value.slice(index)
68453
68469
  }
68454
68470
 
68455
- ;// CONCATENATED MODULE: ./node_modules/mdast-util-to-hast/lib/index.js
68471
+ ;// ./node_modules/mdast-util-to-hast/lib/index.js
68456
68472
  /**
68457
68473
  * @typedef {import('hast').Nodes} HastNodes
68458
68474
  * @typedef {import('mdast').Nodes} MdastNodes
@@ -68560,7 +68576,7 @@ function toHast(tree, options) {
68560
68576
  return result
68561
68577
  }
68562
68578
 
68563
- ;// CONCATENATED MODULE: ./node_modules/remark-rehype/lib/index.js
68579
+ ;// ./node_modules/remark-rehype/lib/index.js
68564
68580
  // Include `data` fields in mdast and `raw` nodes in hast.
68565
68581
  /// <reference types="mdast-util-to-hast" />
68566
68582
 
@@ -68721,7 +68737,7 @@ function remarkRehype(destination, options) {
68721
68737
  }
68722
68738
  }
68723
68739
 
68724
- ;// CONCATENATED MODULE: ./node_modules/estree-walker/src/walker.js
68740
+ ;// ./node_modules/estree-walker/src/walker.js
68725
68741
  /**
68726
68742
  * @typedef { import('estree').Node} Node
68727
68743
  * @typedef {{
@@ -68784,7 +68800,7 @@ class WalkerBase {
68784
68800
  }
68785
68801
  }
68786
68802
 
68787
- ;// CONCATENATED MODULE: ./node_modules/estree-walker/src/sync.js
68803
+ ;// ./node_modules/estree-walker/src/sync.js
68788
68804
 
68789
68805
 
68790
68806
  /**
@@ -68938,7 +68954,7 @@ function isNode(value) {
68938
68954
  );
68939
68955
  }
68940
68956
 
68941
- ;// CONCATENATED MODULE: ./node_modules/estree-walker/src/async.js
68957
+ ;// ./node_modules/estree-walker/src/async.js
68942
68958
 
68943
68959
 
68944
68960
  /**
@@ -69092,7 +69108,7 @@ function async_isNode(value) {
69092
69108
  );
69093
69109
  }
69094
69110
 
69095
- ;// CONCATENATED MODULE: ./node_modules/estree-walker/src/index.js
69111
+ ;// ./node_modules/estree-walker/src/index.js
69096
69112
 
69097
69113
 
69098
69114
 
@@ -69128,7 +69144,7 @@ async function asyncWalk(ast, { enter, leave }) {
69128
69144
  return await instance.visit(ast, null);
69129
69145
  }
69130
69146
 
69131
- ;// CONCATENATED MODULE: ./node_modules/is-reference/src/index.js
69147
+ ;// ./node_modules/is-reference/src/index.js
69132
69148
  /** @typedef { import('estree').Node} Node */
69133
69149
  /** @typedef {Node | {
69134
69150
  * type: 'PropertyDefinition';
@@ -69179,7 +69195,7 @@ function is_reference (node, parent) {
69179
69195
  return false;
69180
69196
  }
69181
69197
 
69182
- ;// CONCATENATED MODULE: ./node_modules/periscopic/src/index.js
69198
+ ;// ./node_modules/periscopic/src/index.js
69183
69199
 
69184
69200
 
69185
69201
 
@@ -69428,7 +69444,7 @@ function extract_identifiers(param, nodes = []) {
69428
69444
  return nodes;
69429
69445
  }
69430
69446
 
69431
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-create.js
69447
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-create.js
69432
69448
  /**
69433
69449
  * @typedef {import('estree-jsx').Node} Node
69434
69450
  */
@@ -69460,7 +69476,7 @@ function estree_util_create_create(from, to) {
69460
69476
  }
69461
69477
  }
69462
69478
 
69463
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-declaration-to-expression.js
69479
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-declaration-to-expression.js
69464
69480
  /**
69465
69481
  * @typedef {import('estree-jsx').Declaration} Declaration
69466
69482
  * @typedef {import('estree-jsx').Expression} Expression
@@ -69493,7 +69509,7 @@ function declarationToExpression(declaration) {
69493
69509
  return {...declaration, type: 'ClassExpression'}
69494
69510
  }
69495
69511
 
69496
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-is-declaration.js
69512
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-is-declaration.js
69497
69513
  /**
69498
69514
  * @typedef {import('estree-jsx').Declaration} Declaration
69499
69515
  * @typedef {import('estree-jsx').MaybeNamedClassDeclaration} MaybeNamedClassDeclaration
@@ -69520,7 +69536,7 @@ function isDeclaration(node) {
69520
69536
  )
69521
69537
  }
69522
69538
 
69523
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-specifiers-to-declarations.js
69539
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-specifiers-to-declarations.js
69524
69540
  /**
69525
69541
  * @typedef {import('estree-jsx').AssignmentProperty} AssignmentProperty
69526
69542
  * @typedef {import('estree-jsx').ExportSpecifier} ExportSpecifier
@@ -69615,7 +69631,7 @@ function specifiersToDeclarations(specifiers, init) {
69615
69631
  return declarations
69616
69632
  }
69617
69633
 
69618
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-id-or-member-expression.js
69634
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-id-or-member-expression.js
69619
69635
  /**
69620
69636
  * @typedef {import('estree-jsx').Identifier} Identifier
69621
69637
  * @typedef {import('estree-jsx').JSXIdentifier} JSXIdentifier
@@ -69688,7 +69704,7 @@ function toJsxIdOrMemberExpression(ids) {
69688
69704
  return object
69689
69705
  }
69690
69706
 
69691
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/recma-document.js
69707
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-document.js
69692
69708
  /**
69693
69709
  * @typedef {import('estree-jsx').CallExpression} CallExpression
69694
69710
  * @typedef {import('estree-jsx').Directive} Directive
@@ -70570,7 +70586,7 @@ function createImportMetaUrlVariable() {
70570
70586
  ]
70571
70587
  }
70572
70588
 
70573
- ;// CONCATENATED MODULE: ./node_modules/estree-util-build-jsx/lib/index.js
70589
+ ;// ./node_modules/estree-util-build-jsx/lib/index.js
70574
70590
  /**
70575
70591
  * @typedef {import('estree-jsx').Expression} Expression
70576
70592
  * @typedef {import('estree-jsx').Identifier} Identifier
@@ -71212,7 +71228,7 @@ function lib_create(from, to) {
71212
71228
  }
71213
71229
  }
71214
71230
 
71215
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-build.js
71231
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-build.js
71216
71232
  /**
71217
71233
  * @typedef {import('estree-jsx').Program} Program
71218
71234
  * @typedef {import('estree-util-build-jsx').Options} BuildJsxOptions
@@ -71305,7 +71321,7 @@ function recmaJsxBuild(options) {
71305
71321
  }
71306
71322
  }
71307
71323
 
71308
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-binary-addition.js
71324
+ ;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-binary-addition.js
71309
71325
  /**
71310
71326
  * @typedef {import('estree-jsx').Expression} Expression
71311
71327
  */
@@ -71332,7 +71348,7 @@ function toBinaryAddition(expressions) {
71332
71348
  return left
71333
71349
  }
71334
71350
 
71335
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.js
71351
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.js
71336
71352
  /**
71337
71353
  * @typedef {import('estree-jsx').Expression} Expression
71338
71354
  * @typedef {import('estree-jsx').Function} EstreeFunction
@@ -71978,7 +71994,7 @@ function inScope(scope, id) {
71978
71994
  return false
71979
71995
  }
71980
71996
 
71981
- ;// CONCATENATED MODULE: ./node_modules/astring/dist/astring.mjs
71997
+ ;// ./node_modules/astring/dist/astring.mjs
71982
71998
  // Astring is a tiny and fast JavaScript code generator from an ESTree-compliant AST.
71983
71999
  //
71984
72000
  // Astring was written by David Bonnet and released under an MIT license.
@@ -73168,7 +73184,7 @@ function generate(node, options) {
73168
73184
  return state.output
73169
73185
  }
73170
73186
 
73171
- ;// CONCATENATED MODULE: ./node_modules/estree-util-to-js/lib/index.js
73187
+ ;// ./node_modules/estree-util-to-js/lib/index.js
73172
73188
  /**
73173
73189
  * @typedef {import('astring').State} State
73174
73190
  * @typedef {import('estree-jsx').Node} Nodes
@@ -73315,7 +73331,7 @@ function toJs(tree, options) {
73315
73331
  return {value, map}
73316
73332
  }
73317
73333
 
73318
- ;// CONCATENATED MODULE: ./node_modules/estree-util-to-js/lib/jsx.js
73334
+ ;// ./node_modules/estree-util-to-js/lib/jsx.js
73319
73335
  /**
73320
73336
  * @typedef {import('estree-jsx').JSXAttribute} JsxAttribute
73321
73337
  * @typedef {import('estree-jsx').JSXClosingElement} JsxClosingElement
@@ -73681,7 +73697,7 @@ function replaceJsxChar($0) {
73681
73697
  : '&#125;'
73682
73698
  }
73683
73699
 
73684
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.js
73700
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.js
73685
73701
  /**
73686
73702
  * @typedef {import('estree-jsx').Program} Program
73687
73703
  * @typedef {import('unified').Processor<undefined, undefined, undefined, Program, string>} Processor
@@ -73728,7 +73744,7 @@ function recmaStringify(options) {
73728
73744
  }
73729
73745
  }
73730
73746
 
73731
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/schema.js
73747
+ ;// ./node_modules/property-information/lib/util/schema.js
73732
73748
  /**
73733
73749
  * @typedef {import('./info.js').Info} Info
73734
73750
  * @typedef {Record<string, Info>} Properties
@@ -73758,7 +73774,7 @@ Schema.prototype.normal = {}
73758
73774
  /** @type {string|null} */
73759
73775
  Schema.prototype.space = null
73760
73776
 
73761
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/merge.js
73777
+ ;// ./node_modules/property-information/lib/util/merge.js
73762
73778
  /**
73763
73779
  * @typedef {import('./schema.js').Properties} Properties
73764
73780
  * @typedef {import('./schema.js').Normal} Normal
@@ -73786,7 +73802,7 @@ function merge(definitions, space) {
73786
73802
  return new Schema(property, normal, space)
73787
73803
  }
73788
73804
 
73789
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/normalize.js
73805
+ ;// ./node_modules/property-information/lib/normalize.js
73790
73806
  /**
73791
73807
  * @param {string} value
73792
73808
  * @returns {string}
@@ -73795,7 +73811,7 @@ function normalize_normalize(value) {
73795
73811
  return value.toLowerCase()
73796
73812
  }
73797
73813
 
73798
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/info.js
73814
+ ;// ./node_modules/property-information/lib/util/info.js
73799
73815
  class Info {
73800
73816
  /**
73801
73817
  * @constructor
@@ -73822,7 +73838,7 @@ Info.prototype.commaOrSpaceSeparated = false
73822
73838
  Info.prototype.mustUseProperty = false
73823
73839
  Info.prototype.defined = false
73824
73840
 
73825
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/types.js
73841
+ ;// ./node_modules/property-information/lib/util/types.js
73826
73842
  let powers = 0
73827
73843
 
73828
73844
  const types_boolean = increment()
@@ -73837,7 +73853,7 @@ function increment() {
73837
73853
  return 2 ** ++powers
73838
73854
  }
73839
73855
 
73840
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/defined-info.js
73856
+ ;// ./node_modules/property-information/lib/util/defined-info.js
73841
73857
 
73842
73858
 
73843
73859
 
@@ -73883,7 +73899,7 @@ function mark(values, key, value) {
73883
73899
  }
73884
73900
  }
73885
73901
 
73886
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/create.js
73902
+ ;// ./node_modules/property-information/lib/util/create.js
73887
73903
  /**
73888
73904
  * @typedef {import('./schema.js').Properties} Properties
73889
73905
  * @typedef {import('./schema.js').Normal} Normal
@@ -73943,7 +73959,7 @@ function create_create(definition) {
73943
73959
  return new Schema(property, normal, definition.space)
73944
73960
  }
73945
73961
 
73946
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/xlink.js
73962
+ ;// ./node_modules/property-information/lib/xlink.js
73947
73963
 
73948
73964
 
73949
73965
  const xlink = create_create({
@@ -73962,7 +73978,7 @@ const xlink = create_create({
73962
73978
  }
73963
73979
  })
73964
73980
 
73965
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/xml.js
73981
+ ;// ./node_modules/property-information/lib/xml.js
73966
73982
 
73967
73983
 
73968
73984
  const xml = create_create({
@@ -73973,7 +73989,7 @@ const xml = create_create({
73973
73989
  properties: {xmlLang: null, xmlBase: null, xmlSpace: null}
73974
73990
  })
73975
73991
 
73976
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/case-sensitive-transform.js
73992
+ ;// ./node_modules/property-information/lib/util/case-sensitive-transform.js
73977
73993
  /**
73978
73994
  * @param {Record<string, string>} attributes
73979
73995
  * @param {string} attribute
@@ -73983,7 +73999,7 @@ function caseSensitiveTransform(attributes, attribute) {
73983
73999
  return attribute in attributes ? attributes[attribute] : attribute
73984
74000
  }
73985
74001
 
73986
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/util/case-insensitive-transform.js
74002
+ ;// ./node_modules/property-information/lib/util/case-insensitive-transform.js
73987
74003
 
73988
74004
 
73989
74005
  /**
@@ -73995,7 +74011,7 @@ function caseInsensitiveTransform(attributes, property) {
73995
74011
  return caseSensitiveTransform(attributes, property.toLowerCase())
73996
74012
  }
73997
74013
 
73998
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/xmlns.js
74014
+ ;// ./node_modules/property-information/lib/xmlns.js
73999
74015
 
74000
74016
 
74001
74017
 
@@ -74006,7 +74022,7 @@ const xmlns = create_create({
74006
74022
  properties: {xmlns: null, xmlnsXLink: null}
74007
74023
  })
74008
74024
 
74009
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/aria.js
74025
+ ;// ./node_modules/property-information/lib/aria.js
74010
74026
 
74011
74027
 
74012
74028
 
@@ -74067,7 +74083,7 @@ const aria = create_create({
74067
74083
  }
74068
74084
  })
74069
74085
 
74070
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/html.js
74086
+ ;// ./node_modules/property-information/lib/html.js
74071
74087
 
74072
74088
 
74073
74089
 
@@ -74384,7 +74400,7 @@ const lib_html_html = create_create({
74384
74400
  }
74385
74401
  })
74386
74402
 
74387
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/svg.js
74403
+ ;// ./node_modules/property-information/lib/svg.js
74388
74404
 
74389
74405
 
74390
74406
 
@@ -74947,7 +74963,7 @@ const svg = create_create({
74947
74963
  }
74948
74964
  })
74949
74965
 
74950
- ;// CONCATENATED MODULE: ./node_modules/property-information/index.js
74966
+ ;// ./node_modules/property-information/index.js
74951
74967
  /**
74952
74968
  * @typedef {import('./lib/util/info.js').Info} Info
74953
74969
  * @typedef {import('./lib/util/schema.js').Schema} Schema
@@ -74967,7 +74983,7 @@ const svg = create_create({
74967
74983
  const property_information_html = merge([xml, xlink, xmlns, aria, lib_html_html], 'html')
74968
74984
  const property_information_svg = merge([xml, xlink, xmlns, aria, svg], 'svg')
74969
74985
 
74970
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/comment.js
74986
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/comment.js
74971
74987
  /**
74972
74988
  * @typedef {import('estree').Comment} Comment
74973
74989
  *
@@ -75012,7 +75028,7 @@ function comment(node, state) {
75012
75028
  return container
75013
75029
  }
75014
75030
 
75015
- ;// CONCATENATED MODULE: ./node_modules/comma-separated-tokens/index.js
75031
+ ;// ./node_modules/comma-separated-tokens/index.js
75016
75032
  /**
75017
75033
  * @typedef Options
75018
75034
  * Configuration for `stringify`.
@@ -75088,7 +75104,7 @@ function comma_separated_tokens_stringify(values, options) {
75088
75104
  .trim()
75089
75105
  }
75090
75106
 
75091
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/find.js
75107
+ ;// ./node_modules/property-information/lib/find.js
75092
75108
  /**
75093
75109
  * @typedef {import('./util/schema.js').Schema} Schema
75094
75110
  */
@@ -75158,7 +75174,7 @@ function camelcase($0) {
75158
75174
  return $0.charAt(1).toUpperCase()
75159
75175
  }
75160
75176
 
75161
- ;// CONCATENATED MODULE: ./node_modules/property-information/lib/hast-to-react.js
75177
+ ;// ./node_modules/property-information/lib/hast-to-react.js
75162
75178
  /**
75163
75179
  * `hast` is close to `React`, but differs in a couple of cases.
75164
75180
  *
@@ -75188,7 +75204,7 @@ const hastToReact = {
75188
75204
  xmlnsXLink: 'xmlnsXlink'
75189
75205
  }
75190
75206
 
75191
- ;// CONCATENATED MODULE: ./node_modules/space-separated-tokens/index.js
75207
+ ;// ./node_modules/space-separated-tokens/index.js
75192
75208
  /**
75193
75209
  * Parse space-separated tokens to an array of strings.
75194
75210
  *
@@ -75217,12 +75233,12 @@ function space_separated_tokens_stringify(values) {
75217
75233
  // EXTERNAL MODULE: ./node_modules/style-to-object/index.js
75218
75234
  var style_to_object = __webpack_require__(9108);
75219
75235
  var style_to_object_default = /*#__PURE__*/__webpack_require__.n(style_to_object);
75220
- ;// CONCATENATED MODULE: ./node_modules/style-to-object/index.mjs
75236
+ ;// ./node_modules/style-to-object/index.mjs
75221
75237
 
75222
75238
 
75223
75239
  /* harmony default export */ const node_modules_style_to_object = ((style_to_object_default()));
75224
75240
 
75225
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/element.js
75241
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/element.js
75226
75242
  /**
75227
75243
  * @typedef {import('estree').Property} Property
75228
75244
  *
@@ -75559,7 +75575,7 @@ function toDash($0) {
75559
75575
  return '-' + $0.toLowerCase()
75560
75576
  }
75561
75577
 
75562
- ;// CONCATENATED MODULE: ./node_modules/estree-util-attach-comments/lib/index.js
75578
+ ;// ./node_modules/estree-util-attach-comments/lib/index.js
75563
75579
  /**
75564
75580
  * @typedef {import('estree').Comment} Comment
75565
75581
  * @typedef {import('estree').Node} Nodes
@@ -75759,7 +75775,7 @@ function compare(left, right, compareEnd) {
75759
75775
  return Number.NaN
75760
75776
  }
75761
75777
 
75762
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/mdx-expression.js
75778
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-expression.js
75763
75779
  /**
75764
75780
  * @typedef {import('estree').Expression} Expression
75765
75781
  *
@@ -75811,7 +75827,7 @@ function mdx_expression_mdxExpression(node, state) {
75811
75827
  return result
75812
75828
  }
75813
75829
 
75814
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/mdx-jsx-element.js
75830
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-jsx-element.js
75815
75831
  /**
75816
75832
  * @typedef {import('estree').Expression} Expression
75817
75833
  *
@@ -75977,7 +75993,7 @@ function mdxJsxElement(node, state) {
75977
75993
  return result
75978
75994
  }
75979
75995
 
75980
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/mdxjs-esm.js
75996
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/mdxjs-esm.js
75981
75997
  /**
75982
75998
  * @typedef {import('mdast-util-mdxjs-esm').MdxjsEsmHast} MdxjsEsm
75983
75999
  *
@@ -76007,7 +76023,7 @@ function mdxjs_esm_mdxjsEsm(node, state) {
76007
76023
  }
76008
76024
  }
76009
76025
 
76010
- ;// CONCATENATED MODULE: ./node_modules/hast-util-whitespace/lib/index.js
76026
+ ;// ./node_modules/hast-util-whitespace/lib/index.js
76011
76027
  /**
76012
76028
  * @typedef {import('hast').Nodes} Nodes
76013
76029
  */
@@ -76043,7 +76059,7 @@ function lib_empty(value) {
76043
76059
  return value.replace(re, '') === ''
76044
76060
  }
76045
76061
 
76046
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/root.js
76062
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/root.js
76047
76063
  /**
76048
76064
  * @typedef {import('estree-jsx').JSXFragment} JsxFragment
76049
76065
  *
@@ -76104,7 +76120,7 @@ function handlers_root_root(node, state) {
76104
76120
  return result
76105
76121
  }
76106
76122
 
76107
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/text.js
76123
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/text.js
76108
76124
  /**
76109
76125
  * @typedef {import('estree').Literal} Literal
76110
76126
  *
@@ -76142,7 +76158,7 @@ function lib_handlers_text_text(node, state) {
76142
76158
  }
76143
76159
  }
76144
76160
 
76145
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/handlers/index.js
76161
+ ;// ./node_modules/hast-util-to-estree/lib/handlers/index.js
76146
76162
 
76147
76163
 
76148
76164
 
@@ -76172,7 +76188,7 @@ const handlers = {
76172
76188
  */
76173
76189
  function handlers_ignore() {}
76174
76190
 
76175
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/state.js
76191
+ ;// ./node_modules/hast-util-to-estree/lib/state.js
76176
76192
  /**
76177
76193
  * @typedef {import('estree').Comment} Comment
76178
76194
  * @typedef {import('estree').Directive} Directive
@@ -76540,7 +76556,7 @@ function createJsxNameFromString(name) {
76540
76556
  return {type: 'JSXIdentifier', name}
76541
76557
  }
76542
76558
 
76543
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-estree/lib/index.js
76559
+ ;// ./node_modules/hast-util-to-estree/lib/index.js
76544
76560
  /**
76545
76561
  * Register MDX nodes in tree:
76546
76562
  *
@@ -76644,7 +76660,7 @@ function toEstree(tree, options) {
76644
76660
  return program
76645
76661
  }
76646
76662
 
76647
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.js
76663
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.js
76648
76664
  /**
76649
76665
  * @typedef {import('estree-jsx').Program} Program
76650
76666
  *
@@ -76676,7 +76692,7 @@ function rehypeRecma(options) {
76676
76692
  }
76677
76693
  }
76678
76694
 
76679
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/rehype-remove-raw.js
76695
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-remove-raw.js
76680
76696
  /**
76681
76697
  * @typedef {import('hast').Root} Root
76682
76698
  */
@@ -76709,7 +76725,7 @@ function rehypeRemoveRaw() {
76709
76725
  }
76710
76726
  }
76711
76727
 
76712
- ;// CONCATENATED MODULE: ./node_modules/collapse-white-space/index.js
76728
+ ;// ./node_modules/collapse-white-space/index.js
76713
76729
  /**
76714
76730
  * @typedef {'html'|'js'} Style
76715
76731
  *
@@ -76797,7 +76813,7 @@ function trimFactory(replace) {
76797
76813
  }
76798
76814
  }
76799
76815
 
76800
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/plugin/remark-mark-and-unravel.js
76816
+ ;// ./node_modules/@mdx-js/mdx/lib/plugin/remark-mark-and-unravel.js
76801
76817
  /**
76802
76818
  * @typedef {import('mdast').Root} Root
76803
76819
  * @typedef {import('mdast').RootContent} RootContent
@@ -76896,7 +76912,7 @@ function remarkMarkAndUnravel() {
76896
76912
  }
76897
76913
  }
76898
76914
 
76899
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/node-types.js
76915
+ ;// ./node_modules/@mdx-js/mdx/lib/node-types.js
76900
76916
  /**
76901
76917
  * List of node types made by `mdast-util-mdx`, which have to be passed
76902
76918
  * through untouched from the mdast tree to the hast tree.
@@ -76909,7 +76925,7 @@ const nodeTypes = /** @type {const} */ ([
76909
76925
  'mdxjsEsm'
76910
76926
  ])
76911
76927
 
76912
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/core.js
76928
+ ;// ./node_modules/@mdx-js/mdx/lib/core.js
76913
76929
  /**
76914
76930
  * @typedef {import('estree-jsx').Program} Program
76915
76931
  * @typedef {import('hast-util-to-estree').ElementAttributeNameCase} ElementAttributeNameCase
@@ -77145,7 +77161,7 @@ function core_createProcessor(options) {
77145
77161
  return pipeline
77146
77162
  }
77147
77163
 
77148
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/compile.js
77164
+ ;// ./node_modules/@mdx-js/mdx/lib/compile.js
77149
77165
  /**
77150
77166
  * @typedef {import('vfile').VFile} VFile
77151
77167
  * @typedef {import('vfile').Compatible} Compatible
@@ -77205,7 +77221,7 @@ function compileSync(vfileCompatible, compileOptions) {
77205
77221
  return core_createProcessor(options).processSync(file)
77206
77222
  }
77207
77223
 
77208
- ;// CONCATENATED MODULE: ./node_modules/estree-util-value-to-estree/node_modules/is-plain-obj/index.js
77224
+ ;// ./node_modules/estree-util-value-to-estree/node_modules/is-plain-obj/index.js
77209
77225
  function is_plain_obj_isPlainObject(value) {
77210
77226
  if (typeof value !== 'object' || value === null) {
77211
77227
  return false;
@@ -77215,7 +77231,7 @@ function is_plain_obj_isPlainObject(value) {
77215
77231
  return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
77216
77232
  }
77217
77233
 
77218
- ;// CONCATENATED MODULE: ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
77234
+ ;// ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
77219
77235
 
77220
77236
  /**
77221
77237
  * Create an ESTree identifier node for a given name.
@@ -77726,7 +77742,7 @@ function valueToEstree(value, options = {}) {
77726
77742
  };
77727
77743
  }
77728
77744
  //# sourceMappingURL=estree-util-value-to-estree.js.map
77729
- ;// CONCATENATED MODULE: ./node_modules/hast-util-parse-selector/lib/index.js
77745
+ ;// ./node_modules/hast-util-parse-selector/lib/index.js
77730
77746
  /**
77731
77747
  * @typedef {import('hast').Element} Element
77732
77748
  * @typedef {import('hast').Properties} Properties
@@ -77815,7 +77831,7 @@ function parseSelector(selector, defaultTagName) {
77815
77831
  }
77816
77832
  }
77817
77833
 
77818
- ;// CONCATENATED MODULE: ./node_modules/hastscript/lib/create-h.js
77834
+ ;// ./node_modules/hastscript/lib/create-h.js
77819
77835
  /**
77820
77836
  * @typedef {import('hast').Element} Element
77821
77837
  * @typedef {import('hast').Nodes} Nodes
@@ -78174,7 +78190,7 @@ function createAdjustMap(values) {
78174
78190
  return result
78175
78191
  }
78176
78192
 
78177
- ;// CONCATENATED MODULE: ./node_modules/hastscript/lib/svg-case-sensitive-tag-names.js
78193
+ ;// ./node_modules/hastscript/lib/svg-case-sensitive-tag-names.js
78178
78194
  const svgCaseSensitiveTagNames = [
78179
78195
  'altGlyph',
78180
78196
  'altGlyphDef',
@@ -78217,7 +78233,7 @@ const svgCaseSensitiveTagNames = [
78217
78233
  'textPath'
78218
78234
  ]
78219
78235
 
78220
- ;// CONCATENATED MODULE: ./node_modules/hastscript/lib/index.js
78236
+ ;// ./node_modules/hastscript/lib/index.js
78221
78237
  /**
78222
78238
  * @typedef {import('./create-h.js').Child} Child
78223
78239
  * Acceptable child value.
@@ -78255,7 +78271,7 @@ const h = createH(property_information_html, 'div')
78255
78271
  /** @type {ReturnType<createH>} */
78256
78272
  const s = createH(property_information_svg, 'g', svgCaseSensitiveTagNames)
78257
78273
 
78258
- ;// CONCATENATED MODULE: ./processor/plugin/toc.ts
78274
+ ;// ./processor/plugin/toc.ts
78259
78275
 
78260
78276
 
78261
78277
 
@@ -78330,7 +78346,7 @@ const tocToMdx = (toc, components) => {
78330
78346
  return lib_mdx(tocHast, { hast: true });
78331
78347
  };
78332
78348
 
78333
- ;// CONCATENATED MODULE: ./errors/mdx-syntax-error.ts
78349
+ ;// ./errors/mdx-syntax-error.ts
78334
78350
  class MdxSyntaxError extends SyntaxError {
78335
78351
  constructor(error, doc) {
78336
78352
  const { message, line, column, url } = error;
@@ -78350,7 +78366,7 @@ class MdxSyntaxError extends SyntaxError {
78350
78366
  }
78351
78367
  }
78352
78368
 
78353
- ;// CONCATENATED MODULE: ./lib/compile.ts
78369
+ ;// ./lib/compile.ts
78354
78370
  var compile_rest = (undefined && undefined.__rest) || function (s, e) {
78355
78371
  var t = {};
78356
78372
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -78388,7 +78404,7 @@ const compile_compile = (text, _a = {}) => {
78388
78404
  };
78389
78405
  /* harmony default export */ const lib_compile = (compile_compile);
78390
78406
 
78391
- ;// CONCATENATED MODULE: ./lib/hast.ts
78407
+ ;// ./lib/hast.ts
78392
78408
 
78393
78409
 
78394
78410
 
@@ -78403,7 +78419,193 @@ const hast = (text, opts = {}) => {
78403
78419
  };
78404
78420
  /* harmony default export */ const lib_hast = (hast);
78405
78421
 
78406
- ;// CONCATENATED MODULE: ./node_modules/hast-util-is-element/lib/index.js
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
78407
78609
  /**
78408
78610
  * @typedef {import('hast').Element} Element
78409
78611
  * @typedef {import('hast').Parents} Parents
@@ -78683,7 +78885,7 @@ function looksLikeAnElement(value) {
78683
78885
  )
78684
78886
  }
78685
78887
 
78686
- ;// CONCATENATED MODULE: ./node_modules/hast-util-embedded/lib/index.js
78888
+ ;// ./node_modules/hast-util-embedded/lib/index.js
78687
78889
 
78688
78890
 
78689
78891
  /**
@@ -78718,7 +78920,7 @@ const embedded = convertElement(
78718
78920
  }
78719
78921
  )
78720
78922
 
78721
- ;// CONCATENATED MODULE: ./node_modules/rehype-minify-whitespace/lib/block.js
78923
+ ;// ./node_modules/rehype-minify-whitespace/lib/block.js
78722
78924
  // See: <https://html.spec.whatwg.org/#the-css-user-agent-style-sheet-and-presentational-hints>
78723
78925
  const block_blocks = [
78724
78926
  'address', // Flow content.
@@ -78781,7 +78983,7 @@ const block_blocks = [
78781
78983
  'xmp' // Flow content, legacy
78782
78984
  ]
78783
78985
 
78784
- ;// CONCATENATED MODULE: ./node_modules/rehype-minify-whitespace/lib/content.js
78986
+ ;// ./node_modules/rehype-minify-whitespace/lib/content.js
78785
78987
  const lib_content_content = [
78786
78988
  // Form.
78787
78989
  'button',
@@ -78790,7 +78992,7 @@ const lib_content_content = [
78790
78992
  'textarea'
78791
78993
  ]
78792
78994
 
78793
- ;// CONCATENATED MODULE: ./node_modules/rehype-minify-whitespace/lib/skippable.js
78995
+ ;// ./node_modules/rehype-minify-whitespace/lib/skippable.js
78794
78996
  const skippable = [
78795
78997
  'area',
78796
78998
  'base',
@@ -78812,7 +79014,7 @@ const skippable = [
78812
79014
  'title'
78813
79015
  ]
78814
79016
 
78815
- ;// CONCATENATED MODULE: ./node_modules/rehype-minify-whitespace/lib/index.js
79017
+ ;// ./node_modules/rehype-minify-whitespace/lib/index.js
78816
79018
  /**
78817
79019
  * @typedef {import('hast').Nodes} Nodes
78818
79020
  * @typedef {import('hast').Parents} Parents
@@ -79198,7 +79400,7 @@ function inferWhiteSpace(node, state) {
79198
79400
  return state.whitespace
79199
79401
  }
79200
79402
 
79201
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/a.js
79403
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/a.js
79202
79404
  /**
79203
79405
  * @typedef {import('hast').Element} Element
79204
79406
  *
@@ -79236,7 +79438,7 @@ function a(state, node) {
79236
79438
  return result
79237
79439
  }
79238
79440
 
79239
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/base.js
79441
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/base.js
79240
79442
  /**
79241
79443
  * @typedef {import('hast').Element} Element
79242
79444
  *
@@ -79262,7 +79464,7 @@ function base(state, node) {
79262
79464
  }
79263
79465
  }
79264
79466
 
79265
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/blockquote.js
79467
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/blockquote.js
79266
79468
  /**
79267
79469
  * @typedef {import('hast').Element} Element
79268
79470
  *
@@ -79289,7 +79491,7 @@ function handlers_blockquote_blockquote(state, node) {
79289
79491
  return result
79290
79492
  }
79291
79493
 
79292
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/br.js
79494
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/br.js
79293
79495
  /**
79294
79496
  * @typedef {import('hast').Element} Element
79295
79497
  *
@@ -79316,7 +79518,7 @@ function br(state, node) {
79316
79518
  return result
79317
79519
  }
79318
79520
 
79319
- ;// CONCATENATED MODULE: ./node_modules/unist-util-find-after/lib/index.js
79521
+ ;// ./node_modules/unist-util-find-after/lib/index.js
79320
79522
  /**
79321
79523
  * @typedef {import('unist').Node} UnistNode
79322
79524
  * @typedef {import('unist').Parent} UnistParent
@@ -79448,7 +79650,7 @@ const findAfter =
79448
79650
  }
79449
79651
  )
79450
79652
 
79451
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-text/lib/index.js
79653
+ ;// ./node_modules/hast-util-to-text/lib/index.js
79452
79654
  /**
79453
79655
  * @typedef {import('hast').Comment} Comment
79454
79656
  * @typedef {import('hast').Element} Element
@@ -80083,7 +80285,7 @@ function closedDialog(node) {
80083
80285
  return node.tagName === 'dialog' && !(node.properties || {}).open
80084
80286
  }
80085
80287
 
80086
- ;// CONCATENATED MODULE: ./node_modules/trim-trailing-lines/index.js
80288
+ ;// ./node_modules/trim-trailing-lines/index.js
80087
80289
  /**
80088
80290
  * Remove final line endings from `value`
80089
80291
  *
@@ -80108,7 +80310,7 @@ function trimTrailingLines(value) {
80108
80310
  return input.slice(0, end)
80109
80311
  }
80110
80312
 
80111
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/code.js
80313
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/code.js
80112
80314
  /**
80113
80315
  * @typedef {import('hast').Element} Element
80114
80316
  *
@@ -80177,7 +80379,7 @@ function handlers_code_code(state, node) {
80177
80379
  return result
80178
80380
  }
80179
80381
 
80180
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/comment.js
80382
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/comment.js
80181
80383
  /**
80182
80384
  * @typedef {import('hast').Comment} Comment
80183
80385
  *
@@ -80207,7 +80409,7 @@ function comment_comment(state, node) {
80207
80409
  return result
80208
80410
  }
80209
80411
 
80210
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/del.js
80412
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/del.js
80211
80413
  /**
80212
80414
  * @typedef {import('hast').Element} Element
80213
80415
  *
@@ -80238,7 +80440,7 @@ function del(state, node) {
80238
80440
  return result
80239
80441
  }
80240
80442
 
80241
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/util/list-items-spread.js
80443
+ ;// ./node_modules/hast-util-to-mdast/lib/util/list-items-spread.js
80242
80444
  /**
80243
80445
  * @typedef {import('mdast').ListContent} ListContent
80244
80446
  */
@@ -80268,7 +80470,7 @@ function listItemsSpread(children) {
80268
80470
  return false
80269
80471
  }
80270
80472
 
80271
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/dl.js
80473
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/dl.js
80272
80474
  /**
80273
80475
  * @typedef {import('hast').Element} Element
80274
80476
  * @typedef {import('hast').ElementContent} ElementContent
@@ -80422,7 +80624,7 @@ function dl_create() {
80422
80624
  return {type: 'listItem', spread: false, checked: null, children: []}
80423
80625
  }
80424
80626
 
80425
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/em.js
80627
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/em.js
80426
80628
  /**
80427
80629
  * @typedef {import('hast').Element} Element
80428
80630
  *
@@ -80454,7 +80656,7 @@ function em(state, node) {
80454
80656
  return result
80455
80657
  }
80456
80658
 
80457
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/heading.js
80659
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/heading.js
80458
80660
  /**
80459
80661
  * @typedef {import('hast').Element} Element
80460
80662
  *
@@ -80488,7 +80690,7 @@ function handlers_heading_heading(state, node) {
80488
80690
  return result
80489
80691
  }
80490
80692
 
80491
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/hr.js
80693
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/hr.js
80492
80694
  /**
80493
80695
  * @typedef {import('hast').Element} Element
80494
80696
  *
@@ -80515,7 +80717,7 @@ function hr(state, node) {
80515
80717
  return result
80516
80718
  }
80517
80719
 
80518
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/iframe.js
80720
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/iframe.js
80519
80721
  /**
80520
80722
  * @typedef {import('hast').Element} Element
80521
80723
  *
@@ -80557,7 +80759,7 @@ function iframe(state, node) {
80557
80759
  }
80558
80760
  }
80559
80761
 
80560
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/img.js
80762
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/img.js
80561
80763
  /**
80562
80764
  * @typedef {import('hast').Element} Element
80563
80765
  *
@@ -80591,7 +80793,7 @@ function img(state, node) {
80591
80793
  return result
80592
80794
  }
80593
80795
 
80594
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/inline-code.js
80796
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/inline-code.js
80595
80797
  /**
80596
80798
  * @typedef {import('hast').Element} Element
80597
80799
  *
@@ -80617,7 +80819,7 @@ function handlers_inline_code_inlineCode(state, node) {
80617
80819
  return result
80618
80820
  }
80619
80821
 
80620
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/util/find-selected-options.js
80822
+ ;// ./node_modules/hast-util-to-mdast/lib/util/find-selected-options.js
80621
80823
  /**
80622
80824
  * @typedef {import('hast').Element} Element
80623
80825
  * @typedef {import('hast').Properties} Properties
@@ -80712,7 +80914,7 @@ function findOptions(node) {
80712
80914
  return results
80713
80915
  }
80714
80916
 
80715
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/input.js
80917
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/input.js
80716
80918
  /**
80717
80919
  * @typedef {import('hast').Element} Element
80718
80920
  *
@@ -80855,7 +81057,7 @@ function input(state, node) {
80855
81057
  return result
80856
81058
  }
80857
81059
 
80858
- ;// CONCATENATED MODULE: ./node_modules/hast-util-has-property/lib/index.js
81060
+ ;// ./node_modules/hast-util-has-property/lib/index.js
80859
81061
  /**
80860
81062
  * @typedef {import('hast').Element} Element
80861
81063
  * @typedef {import('hast').Nodes} Nodes
@@ -80886,7 +81088,7 @@ function hasProperty(node, name) {
80886
81088
  return value !== null && value !== undefined && value !== false
80887
81089
  }
80888
81090
 
80889
- ;// CONCATENATED MODULE: ./node_modules/hast-util-is-body-ok-link/lib/index.js
81091
+ ;// ./node_modules/hast-util-is-body-ok-link/lib/index.js
80890
81092
  /**
80891
81093
  * @typedef {import('hast').Nodes} Nodes
80892
81094
  */
@@ -80926,7 +81128,7 @@ function isBodyOkLink(node) {
80926
81128
  return true
80927
81129
  }
80928
81130
 
80929
- ;// CONCATENATED MODULE: ./node_modules/hast-util-phrasing/lib/index.js
81131
+ ;// ./node_modules/hast-util-phrasing/lib/index.js
80930
81132
  /**
80931
81133
  * @typedef {import('hast').Nodes} Nodes
80932
81134
  */
@@ -81006,7 +81208,7 @@ function lib_phrasing(value) {
81006
81208
  )
81007
81209
  }
81008
81210
 
81009
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/li.js
81211
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/li.js
81010
81212
  /**
81011
81213
  * @typedef {import('hast').Element} Element
81012
81214
  *
@@ -81157,7 +81359,7 @@ function extractLeadingCheckbox(node) {
81157
81359
  return {checkbox: undefined, rest: node}
81158
81360
  }
81159
81361
 
81160
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/list.js
81362
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/list.js
81161
81363
  /**
81162
81364
  * @typedef {import('hast').Element} Element
81163
81365
  *
@@ -81210,7 +81412,7 @@ function list_create() {
81210
81412
  return {type: 'listItem', spread: false, checked: null, children: []}
81211
81413
  }
81212
81414
 
81213
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/util/wrap.js
81415
+ ;// ./node_modules/hast-util-to-mdast/lib/util/wrap.js
81214
81416
  /**
81215
81417
  * @typedef {import('mdast').BlockContent} BlockContent
81216
81418
  * @typedef {import('mdast').Delete} Delete
@@ -81433,7 +81635,7 @@ function cloneWithoutChildren(node) {
81433
81635
  return esm({...node, children: []})
81434
81636
  }
81435
81637
 
81436
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/media.js
81638
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/media.js
81437
81639
  /**
81438
81640
  * @typedef {import('hast').Element} Element
81439
81641
  *
@@ -81523,7 +81725,7 @@ function media(state, node) {
81523
81725
  return result
81524
81726
  }
81525
81727
 
81526
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/p.js
81728
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/p.js
81527
81729
  /**
81528
81730
  * @typedef {import('hast').Element} Element
81529
81731
  *
@@ -81557,7 +81759,7 @@ function p_p(state, node) {
81557
81759
  }
81558
81760
  }
81559
81761
 
81560
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/q.js
81762
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/q.js
81561
81763
  /**
81562
81764
  * @typedef {import('hast').Element} Element
81563
81765
  *
@@ -81604,7 +81806,7 @@ function q(state, node) {
81604
81806
  return contents
81605
81807
  }
81606
81808
 
81607
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/root.js
81809
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/root.js
81608
81810
  /**
81609
81811
  * @typedef {import('hast').Root} HastRoot
81610
81812
  *
@@ -81636,7 +81838,7 @@ function lib_handlers_root_root(state, node) {
81636
81838
  return result
81637
81839
  }
81638
81840
 
81639
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/select.js
81841
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/select.js
81640
81842
  /**
81641
81843
  * @typedef {import('hast').Element} Element
81642
81844
  *
@@ -81674,7 +81876,7 @@ function select_select(state, node) {
81674
81876
  }
81675
81877
  }
81676
81878
 
81677
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/strong.js
81879
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/strong.js
81678
81880
  /**
81679
81881
  * @typedef {import('hast').Element} Element
81680
81882
  *
@@ -81706,7 +81908,7 @@ function handlers_strong_strong(state, node) {
81706
81908
  return result
81707
81909
  }
81708
81910
 
81709
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/table-cell.js
81911
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/table-cell.js
81710
81912
  /**
81711
81913
  * @typedef {import('hast').Element} Element
81712
81914
  *
@@ -81752,7 +81954,7 @@ function table_cell_tableCell(state, node) {
81752
81954
  return result
81753
81955
  }
81754
81956
 
81755
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/table-row.js
81957
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/table-row.js
81756
81958
  /**
81757
81959
  * @typedef {import('hast').Element} Element
81758
81960
  *
@@ -81789,7 +81991,7 @@ function table_row_create() {
81789
81991
  return {type: 'tableCell', children: []}
81790
81992
  }
81791
81993
 
81792
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/table.js
81994
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/table.js
81793
81995
  /**
81794
81996
  * @typedef {import('hast').Element} Element
81795
81997
  *
@@ -81998,7 +82200,7 @@ function createRow() {
81998
82200
  return {type: 'tableRow', children: []}
81999
82201
  }
82000
82202
 
82001
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/text.js
82203
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/text.js
82002
82204
  /**
82003
82205
  * @typedef {import('hast').Text} HastText
82004
82206
  *
@@ -82025,7 +82227,7 @@ function hast_util_to_mdast_lib_handlers_text_text(state, node) {
82025
82227
  return result
82026
82228
  }
82027
82229
 
82028
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/textarea.js
82230
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/textarea.js
82029
82231
  /**
82030
82232
  * @typedef {import('hast').Element} Element
82031
82233
  *
@@ -82051,7 +82253,7 @@ function textarea_textarea(state, node) {
82051
82253
  return result
82052
82254
  }
82053
82255
 
82054
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/wbr.js
82256
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/wbr.js
82055
82257
  /**
82056
82258
  * @typedef {import('hast').Element} Element
82057
82259
  *
@@ -82078,7 +82280,7 @@ function wbr(state, node) {
82078
82280
  return result
82079
82281
  }
82080
82282
 
82081
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/handlers/index.js
82283
+ ;// ./node_modules/hast-util-to-mdast/lib/handlers/index.js
82082
82284
  /**
82083
82285
  * @typedef {import('hast').Parents} Parents
82084
82286
  *
@@ -82314,7 +82516,7 @@ function handlers_flow(state, node) {
82314
82516
  */
82315
82517
  function lib_handlers_ignore() {}
82316
82518
 
82317
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/state.js
82519
+ ;// ./node_modules/hast-util-to-mdast/lib/state.js
82318
82520
  /**
82319
82521
  * @typedef {import('hast').Element} Element
82320
82522
  * @typedef {import('hast').Nodes} Nodes
@@ -82719,7 +82921,7 @@ function toSpecificContent(nodes, build) {
82719
82921
  }
82720
82922
  }
82721
82923
 
82722
- ;// CONCATENATED MODULE: ./node_modules/hast-util-to-mdast/lib/index.js
82924
+ ;// ./node_modules/hast-util-to-mdast/lib/index.js
82723
82925
  /**
82724
82926
  * @typedef {import('hast').Nodes} Nodes
82725
82927
  *
@@ -82835,7 +83037,7 @@ function toMdast(tree, options) {
82835
83037
  return mdast
82836
83038
  }
82837
83039
 
82838
- ;// CONCATENATED MODULE: ./node_modules/rehype-remark/lib/index.js
83040
+ ;// ./node_modules/rehype-remark/lib/index.js
82839
83041
  /**
82840
83042
  * @typedef {import('hast').Root} HastRoot
82841
83043
  * @typedef {import('hast-util-to-mdast').Options} Options
@@ -82923,7 +83125,7 @@ function rehypeRemark(destination, options) {
82923
83125
  }
82924
83126
  }
82925
83127
 
82926
- ;// CONCATENATED MODULE: ./processor/compile/callout.ts
83128
+ ;// ./processor/compile/callout.ts
82927
83129
 
82928
83130
  const callout = (node, _, state, info) => {
82929
83131
  const exit = state.enter(NodeTypes.callout);
@@ -82943,7 +83145,7 @@ const callout = (node, _, state, info) => {
82943
83145
  };
82944
83146
  /* harmony default export */ const compile_callout = (callout);
82945
83147
 
82946
- ;// CONCATENATED MODULE: ./processor/compile/code-tabs.ts
83148
+ ;// ./processor/compile/code-tabs.ts
82947
83149
 
82948
83150
  const codeTabs = (node, _, state, info) => {
82949
83151
  const exit = state.enter(NodeTypes.codeTabs);
@@ -82956,7 +83158,7 @@ const codeTabs = (node, _, state, info) => {
82956
83158
  };
82957
83159
  /* harmony default export */ const compile_code_tabs = (codeTabs);
82958
83160
 
82959
- ;// CONCATENATED MODULE: ./processor/compile/embed.ts
83161
+ ;// ./processor/compile/embed.ts
82960
83162
 
82961
83163
  const embed_embed = (node) => {
82962
83164
  const attributes = formatHProps(node);
@@ -82969,11 +83171,11 @@ const embed_embed = (node) => {
82969
83171
  };
82970
83172
  /* harmony default export */ const compile_embed = (embed_embed);
82971
83173
 
82972
- ;// CONCATENATED MODULE: ./processor/compile/gemoji.ts
83174
+ ;// ./processor/compile/gemoji.ts
82973
83175
  const gemoji_gemoji = (node) => `:${node.name}:`;
82974
83176
  /* harmony default export */ const compile_gemoji = (gemoji_gemoji);
82975
83177
 
82976
- ;// CONCATENATED MODULE: ./processor/compile/html-block.ts
83178
+ ;// ./processor/compile/html-block.ts
82977
83179
 
82978
83180
  const htmlBlock = (node) => {
82979
83181
  const { runScripts, html } = getHProps(node);
@@ -82983,7 +83185,7 @@ ${reformatHTML(html)}
82983
83185
  };
82984
83186
  /* harmony default export */ const html_block = (htmlBlock);
82985
83187
 
82986
- ;// CONCATENATED MODULE: ./processor/compile/compatibility.ts
83188
+ ;// ./processor/compile/compatibility.ts
82987
83189
  var compatibility_rest = (undefined && undefined.__rest) || function (s, e) {
82988
83190
  var t = {};
82989
83191
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -83054,7 +83256,7 @@ const compatibility = (node) => {
83054
83256
  };
83055
83257
  /* harmony default export */ const compile_compatibility = (compatibility);
83056
83258
 
83057
- ;// CONCATENATED MODULE: ./processor/compile/variable.ts
83259
+ ;// ./processor/compile/variable.ts
83058
83260
  const variable = (node) => {
83059
83261
  // @note: coming from RDMD, it's set as `variable`. But when mdx is parsed,
83060
83262
  // it's set as `name`
@@ -83063,7 +83265,7 @@ const variable = (node) => {
83063
83265
  };
83064
83266
  /* harmony default export */ const compile_variable = (variable);
83065
83267
 
83066
- ;// CONCATENATED MODULE: ./processor/compile/index.ts
83268
+ ;// ./processor/compile/index.ts
83067
83269
 
83068
83270
 
83069
83271
 
@@ -83095,7 +83297,7 @@ function compilers() {
83095
83297
  }
83096
83298
  /* harmony default export */ const processor_compile = (compilers);
83097
83299
 
83098
- ;// CONCATENATED MODULE: ./lib/mdx.ts
83300
+ ;// ./lib/mdx.ts
83099
83301
  var mdx_rest = (undefined && undefined.__rest) || function (s, e) {
83100
83302
  var t = {};
83101
83303
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -83130,7 +83332,7 @@ const mdx_mdx = (tree, _a = {}) => {
83130
83332
  };
83131
83333
  /* harmony default export */ const lib_mdx = (mdx_mdx);
83132
83334
 
83133
- ;// CONCATENATED MODULE: ./lib/plain.ts
83335
+ ;// ./lib/plain.ts
83134
83336
 
83135
83337
  const STRIP_TAGS = ['script', 'style'];
83136
83338
  function plain_one(node, opts) {
@@ -83188,7 +83390,7 @@ const plain = (node, opts = {}) => {
83188
83390
  // EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
83189
83391
  var jsx_runtime = __webpack_require__(4848);
83190
83392
  var jsx_runtime_namespaceObject = /*#__PURE__*/__webpack_require__.t(jsx_runtime, 2);
83191
- ;// CONCATENATED MODULE: ./node_modules/@mdx-js/mdx/lib/run.js
83393
+ ;// ./node_modules/@mdx-js/mdx/lib/run.js
83192
83394
  /**
83193
83395
  * @typedef {import('mdx/types.js').MDXModule} MDXModule
83194
83396
  *
@@ -83238,7 +83440,7 @@ function runSync(code, options) {
83238
83440
  // EXTERNAL MODULE: external "@readme/variable"
83239
83441
  var variable_ = __webpack_require__(8167);
83240
83442
  var variable_default = /*#__PURE__*/__webpack_require__.n(variable_);
83241
- ;// CONCATENATED MODULE: ./contexts/index.tsx
83443
+ ;// ./contexts/index.tsx
83242
83444
 
83243
83445
 
83244
83446
 
@@ -83253,7 +83455,7 @@ const Contexts = ({ children, terms = [], variables = { user: {}, defaults: [] }
83253
83455
  };
83254
83456
  /* harmony default export */ const contexts = (Contexts);
83255
83457
 
83256
- ;// CONCATENATED MODULE: ./lib/run.tsx
83458
+ ;// ./lib/run.tsx
83257
83459
  var run_rest = (undefined && undefined.__rest) || function (s, e) {
83258
83460
  var t = {};
83259
83461
  for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
@@ -83302,7 +83504,7 @@ const run_run = async (string, _opts = {}) => {
83302
83504
  };
83303
83505
  /* harmony default export */ const lib_run = (run_run);
83304
83506
 
83305
- ;// CONCATENATED MODULE: ./lib/tags.ts
83507
+ ;// ./lib/tags.ts
83306
83508
 
83307
83509
 
83308
83510
 
@@ -83317,7 +83519,8 @@ const tags = (doc) => {
83317
83519
  };
83318
83520
  /* harmony default export */ const lib_tags = (tags);
83319
83521
 
83320
- ;// CONCATENATED MODULE: ./lib/index.ts
83522
+ ;// ./lib/index.ts
83523
+
83321
83524
 
83322
83525
 
83323
83526
 
@@ -83328,7 +83531,7 @@ const tags = (doc) => {
83328
83531
 
83329
83532
 
83330
83533
 
83331
- ;// CONCATENATED MODULE: ./index.tsx
83534
+ ;// ./index.tsx
83332
83535
 
83333
83536
 
83334
83537