@readme/markdown 7.7.3 → 7.9.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/10.node.js +153 -153
- package/dist/11.node.js +13 -13
- package/dist/486.node.js +305 -305
- package/dist/550.node.js +8 -8
- package/dist/849.node.js +2 -2
- package/dist/940.node.js +56 -56
- package/dist/995.node.js +74 -74
- package/dist/index.d.ts +1 -1
- package/dist/lib/index.d.ts +11 -10
- package/dist/lib/mdastV6.d.ts +2 -0
- package/dist/lib/migrate.d.ts +2 -0
- package/dist/main.js +686 -471
- package/dist/main.node.js +648 -448
- package/dist/processor/migration/emphasis.d.ts +3 -0
- package/dist/processor/migration/images.d.ts +2 -0
- package/dist/processor/migration/index.d.ts +2 -0
- package/dist/processor/migration/linkReference.d.ts +3 -0
- package/dist/processor/migration/table-cell.d.ts +4 -0
- package/package.json +11 -8
package/dist/main.node.js
CHANGED
|
@@ -7959,7 +7959,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
7959
7959
|
compile: () => (/* reexport */ lib_compile),
|
|
7960
7960
|
hast: () => (/* reexport */ lib_hast),
|
|
7961
7961
|
mdast: () => (/* reexport */ lib_mdast),
|
|
7962
|
+
mdastV6: () => (/* reexport */ lib_mdastV6),
|
|
7962
7963
|
mdx: () => (/* reexport */ lib_mdx),
|
|
7964
|
+
migrate: () => (/* reexport */ lib_migrate),
|
|
7963
7965
|
plain: () => (/* reexport */ lib_plain),
|
|
7964
7966
|
remarkPlugins: () => (/* reexport */ remarkPlugins),
|
|
7965
7967
|
run: () => (/* reexport */ lib_run),
|
|
@@ -8020,7 +8022,7 @@ __webpack_require__.d(util_types_namespaceObject, {
|
|
|
8020
8022
|
// EXTERNAL MODULE: external {"amd":"react","commonjs":"react","commonjs2":"react","root":"React","umd":"react"}
|
|
8021
8023
|
var external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_ = __webpack_require__(3137);
|
|
8022
8024
|
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_);
|
|
8023
|
-
;//
|
|
8025
|
+
;// ./components/Accordion/index.tsx
|
|
8024
8026
|
|
|
8025
8027
|
|
|
8026
8028
|
const Accordion = ({ children, icon, iconColor, title }) => {
|
|
@@ -8036,11 +8038,11 @@ const Accordion = ({ children, icon, iconColor, title }) => {
|
|
|
8036
8038
|
|
|
8037
8039
|
// EXTERNAL MODULE: ./node_modules/prop-types/index.js
|
|
8038
8040
|
var prop_types = __webpack_require__(5556);
|
|
8039
|
-
;//
|
|
8041
|
+
;// ./contexts/BaseUrl.js
|
|
8040
8042
|
|
|
8041
8043
|
const BaseUrlContext = /*#__PURE__*/external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createContext('/');
|
|
8042
8044
|
/* harmony default export */ const BaseUrl = (BaseUrlContext);
|
|
8043
|
-
;//
|
|
8045
|
+
;// ./components/Anchor.jsx
|
|
8044
8046
|
const _excluded = ["children", "href", "target", "title"];
|
|
8045
8047
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
8046
8048
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
@@ -8120,7 +8122,7 @@ Anchor.defaultProps = {
|
|
|
8120
8122
|
title: ''
|
|
8121
8123
|
};
|
|
8122
8124
|
/* harmony default export */ const components_Anchor = (Anchor);
|
|
8123
|
-
;//
|
|
8125
|
+
;// ./components/Callout/index.tsx
|
|
8124
8126
|
|
|
8125
8127
|
const themes = {
|
|
8126
8128
|
'\uD83D\uDCD8': 'info',
|
|
@@ -8149,7 +8151,7 @@ const Callout = (props) => {
|
|
|
8149
8151
|
};
|
|
8150
8152
|
/* harmony default export */ const components_Callout = (Callout);
|
|
8151
8153
|
|
|
8152
|
-
;//
|
|
8154
|
+
;// ./components/Cards/index.tsx
|
|
8153
8155
|
|
|
8154
8156
|
|
|
8155
8157
|
const Card = ({ children, href, icon, iconColor, target, title }) => {
|
|
@@ -8168,7 +8170,7 @@ const CardsGrid = ({ columns = 2, children }) => {
|
|
|
8168
8170
|
// EXTERNAL MODULE: ./node_modules/copy-to-clipboard/index.js
|
|
8169
8171
|
var copy_to_clipboard = __webpack_require__(7965);
|
|
8170
8172
|
var copy_to_clipboard_default = /*#__PURE__*/__webpack_require__.n(copy_to_clipboard);
|
|
8171
|
-
;//
|
|
8173
|
+
;// ./components/Code/index.tsx
|
|
8172
8174
|
|
|
8173
8175
|
|
|
8174
8176
|
// Only load CodeMirror in the browser, for SSR
|
|
@@ -8218,7 +8220,7 @@ const Code = (props) => {
|
|
|
8218
8220
|
|
|
8219
8221
|
// EXTERNAL MODULE: ./node_modules/@readme/syntax-highlighter/dist/index.node.js
|
|
8220
8222
|
var index_node = __webpack_require__(3368);
|
|
8221
|
-
;//
|
|
8223
|
+
;// ./components/CodeTabs/index.tsx
|
|
8222
8224
|
|
|
8223
8225
|
|
|
8224
8226
|
let mermaid;
|
|
@@ -8261,7 +8263,7 @@ const CodeTabs = props => {
|
|
|
8261
8263
|
};
|
|
8262
8264
|
/* harmony default export */ const components_CodeTabs = (CodeTabs);
|
|
8263
8265
|
|
|
8264
|
-
;//
|
|
8266
|
+
;// ./components/Embed/index.tsx
|
|
8265
8267
|
var __rest = (undefined && undefined.__rest) || function (s, e) {
|
|
8266
8268
|
var t = {};
|
|
8267
8269
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -8319,7 +8321,7 @@ const Embed = (_a) => {
|
|
|
8319
8321
|
};
|
|
8320
8322
|
/* harmony default export */ const components_Embed = (Embed);
|
|
8321
8323
|
|
|
8322
|
-
;//
|
|
8324
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getWindow.js
|
|
8323
8325
|
function getWindow(node) {
|
|
8324
8326
|
if (node == null) {
|
|
8325
8327
|
return window;
|
|
@@ -8332,7 +8334,7 @@ function getWindow(node) {
|
|
|
8332
8334
|
|
|
8333
8335
|
return node;
|
|
8334
8336
|
}
|
|
8335
|
-
;//
|
|
8337
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js
|
|
8336
8338
|
|
|
8337
8339
|
|
|
8338
8340
|
function isElement(node) {
|
|
@@ -8356,11 +8358,11 @@ function isShadowRoot(node) {
|
|
|
8356
8358
|
}
|
|
8357
8359
|
|
|
8358
8360
|
|
|
8359
|
-
;//
|
|
8361
|
+
;// ./node_modules/@popperjs/core/lib/utils/math.js
|
|
8360
8362
|
var math_max = Math.max;
|
|
8361
8363
|
var math_min = Math.min;
|
|
8362
8364
|
var round = Math.round;
|
|
8363
|
-
;//
|
|
8365
|
+
;// ./node_modules/@popperjs/core/lib/utils/userAgent.js
|
|
8364
8366
|
function getUAString() {
|
|
8365
8367
|
var uaData = navigator.userAgentData;
|
|
8366
8368
|
|
|
@@ -8372,12 +8374,12 @@ function getUAString() {
|
|
|
8372
8374
|
|
|
8373
8375
|
return navigator.userAgent;
|
|
8374
8376
|
}
|
|
8375
|
-
;//
|
|
8377
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js
|
|
8376
8378
|
|
|
8377
8379
|
function isLayoutViewport() {
|
|
8378
8380
|
return !/^((?!chrome|android).)*safari/i.test(getUAString());
|
|
8379
8381
|
}
|
|
8380
|
-
;//
|
|
8382
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js
|
|
8381
8383
|
|
|
8382
8384
|
|
|
8383
8385
|
|
|
@@ -8419,7 +8421,7 @@ function getBoundingClientRect(element, includeScale, isFixedStrategy) {
|
|
|
8419
8421
|
y: y
|
|
8420
8422
|
};
|
|
8421
8423
|
}
|
|
8422
|
-
;//
|
|
8424
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js
|
|
8423
8425
|
|
|
8424
8426
|
function getWindowScroll(node) {
|
|
8425
8427
|
var win = getWindow(node);
|
|
@@ -8430,14 +8432,14 @@ function getWindowScroll(node) {
|
|
|
8430
8432
|
scrollTop: scrollTop
|
|
8431
8433
|
};
|
|
8432
8434
|
}
|
|
8433
|
-
;//
|
|
8435
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js
|
|
8434
8436
|
function getHTMLElementScroll(element) {
|
|
8435
8437
|
return {
|
|
8436
8438
|
scrollLeft: element.scrollLeft,
|
|
8437
8439
|
scrollTop: element.scrollTop
|
|
8438
8440
|
};
|
|
8439
8441
|
}
|
|
8440
|
-
;//
|
|
8442
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js
|
|
8441
8443
|
|
|
8442
8444
|
|
|
8443
8445
|
|
|
@@ -8449,18 +8451,18 @@ function getNodeScroll(node) {
|
|
|
8449
8451
|
return getHTMLElementScroll(node);
|
|
8450
8452
|
}
|
|
8451
8453
|
}
|
|
8452
|
-
;//
|
|
8454
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js
|
|
8453
8455
|
function getNodeName(element) {
|
|
8454
8456
|
return element ? (element.nodeName || '').toLowerCase() : null;
|
|
8455
8457
|
}
|
|
8456
|
-
;//
|
|
8458
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js
|
|
8457
8459
|
|
|
8458
8460
|
function getDocumentElement(element) {
|
|
8459
8461
|
// $FlowFixMe[incompatible-return]: assume body is always available
|
|
8460
8462
|
return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]
|
|
8461
8463
|
element.document) || window.document).documentElement;
|
|
8462
8464
|
}
|
|
8463
|
-
;//
|
|
8465
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js
|
|
8464
8466
|
|
|
8465
8467
|
|
|
8466
8468
|
|
|
@@ -8474,12 +8476,12 @@ function getWindowScrollBarX(element) {
|
|
|
8474
8476
|
// this (e.g. Edge 2019, IE11, Safari)
|
|
8475
8477
|
return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;
|
|
8476
8478
|
}
|
|
8477
|
-
;//
|
|
8479
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js
|
|
8478
8480
|
|
|
8479
8481
|
function getComputedStyle(element) {
|
|
8480
8482
|
return getWindow(element).getComputedStyle(element);
|
|
8481
8483
|
}
|
|
8482
|
-
;//
|
|
8484
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js
|
|
8483
8485
|
|
|
8484
8486
|
function isScrollParent(element) {
|
|
8485
8487
|
// Firefox wants us to check `-x` and `-y` variations as well
|
|
@@ -8490,7 +8492,7 @@ function isScrollParent(element) {
|
|
|
8490
8492
|
|
|
8491
8493
|
return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);
|
|
8492
8494
|
}
|
|
8493
|
-
;//
|
|
8495
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js
|
|
8494
8496
|
|
|
8495
8497
|
|
|
8496
8498
|
|
|
@@ -8549,7 +8551,7 @@ function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {
|
|
|
8549
8551
|
height: rect.height
|
|
8550
8552
|
};
|
|
8551
8553
|
}
|
|
8552
|
-
;//
|
|
8554
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js
|
|
8553
8555
|
// Returns the layout rect of an element relative to its offsetParent. Layout
|
|
8554
8556
|
// means it doesn't take into account transforms.
|
|
8555
8557
|
|
|
@@ -8575,7 +8577,7 @@ function getLayoutRect(element) {
|
|
|
8575
8577
|
height: height
|
|
8576
8578
|
};
|
|
8577
8579
|
}
|
|
8578
|
-
;//
|
|
8580
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js
|
|
8579
8581
|
|
|
8580
8582
|
|
|
8581
8583
|
|
|
@@ -8595,7 +8597,7 @@ function getParentNode(element) {
|
|
|
8595
8597
|
|
|
8596
8598
|
);
|
|
8597
8599
|
}
|
|
8598
|
-
;//
|
|
8600
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js
|
|
8599
8601
|
|
|
8600
8602
|
|
|
8601
8603
|
|
|
@@ -8612,7 +8614,7 @@ function getScrollParent(node) {
|
|
|
8612
8614
|
|
|
8613
8615
|
return getScrollParent(getParentNode(node));
|
|
8614
8616
|
}
|
|
8615
|
-
;//
|
|
8617
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js
|
|
8616
8618
|
|
|
8617
8619
|
|
|
8618
8620
|
|
|
@@ -8639,12 +8641,12 @@ function listScrollParents(element, list) {
|
|
|
8639
8641
|
return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here
|
|
8640
8642
|
updatedList.concat(listScrollParents(getParentNode(target)));
|
|
8641
8643
|
}
|
|
8642
|
-
;//
|
|
8644
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js
|
|
8643
8645
|
|
|
8644
8646
|
function isTableElement(element) {
|
|
8645
8647
|
return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;
|
|
8646
8648
|
}
|
|
8647
|
-
;//
|
|
8649
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js
|
|
8648
8650
|
|
|
8649
8651
|
|
|
8650
8652
|
|
|
@@ -8714,7 +8716,7 @@ function getOffsetParent(element) {
|
|
|
8714
8716
|
|
|
8715
8717
|
return offsetParent || getContainingBlock(element) || window;
|
|
8716
8718
|
}
|
|
8717
|
-
;//
|
|
8719
|
+
;// ./node_modules/@popperjs/core/lib/enums.js
|
|
8718
8720
|
var enums_top = 'top';
|
|
8719
8721
|
var bottom = 'bottom';
|
|
8720
8722
|
var right = 'right';
|
|
@@ -8746,7 +8748,7 @@ var beforeWrite = 'beforeWrite';
|
|
|
8746
8748
|
var write = 'write';
|
|
8747
8749
|
var afterWrite = 'afterWrite';
|
|
8748
8750
|
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];
|
|
8749
|
-
;//
|
|
8751
|
+
;// ./node_modules/@popperjs/core/lib/utils/orderModifiers.js
|
|
8750
8752
|
// source: https://stackoverflow.com/questions/49875255
|
|
8751
8753
|
|
|
8752
8754
|
function order(modifiers) {
|
|
@@ -8791,7 +8793,7 @@ function orderModifiers(modifiers) {
|
|
|
8791
8793
|
}));
|
|
8792
8794
|
}, []);
|
|
8793
8795
|
}
|
|
8794
|
-
;//
|
|
8796
|
+
;// ./node_modules/@popperjs/core/lib/utils/debounce.js
|
|
8795
8797
|
function debounce(fn) {
|
|
8796
8798
|
var pending;
|
|
8797
8799
|
return function () {
|
|
@@ -8807,7 +8809,7 @@ function debounce(fn) {
|
|
|
8807
8809
|
return pending;
|
|
8808
8810
|
};
|
|
8809
8811
|
}
|
|
8810
|
-
;//
|
|
8812
|
+
;// ./node_modules/@popperjs/core/lib/utils/mergeByName.js
|
|
8811
8813
|
function mergeByName(modifiers) {
|
|
8812
8814
|
var merged = modifiers.reduce(function (merged, current) {
|
|
8813
8815
|
var existing = merged[current.name];
|
|
@@ -8822,7 +8824,7 @@ function mergeByName(modifiers) {
|
|
|
8822
8824
|
return merged[key];
|
|
8823
8825
|
});
|
|
8824
8826
|
}
|
|
8825
|
-
;//
|
|
8827
|
+
;// ./node_modules/@popperjs/core/lib/createPopper.js
|
|
8826
8828
|
|
|
8827
8829
|
|
|
8828
8830
|
|
|
@@ -9022,7 +9024,7 @@ function popperGenerator(generatorOptions) {
|
|
|
9022
9024
|
var createPopper = /*#__PURE__*/(/* unused pure expression or super */ null && (popperGenerator())); // eslint-disable-next-line import/no-unused-modules
|
|
9023
9025
|
|
|
9024
9026
|
|
|
9025
|
-
;//
|
|
9027
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/eventListeners.js
|
|
9026
9028
|
// eslint-disable-next-line import/no-unused-modules
|
|
9027
9029
|
|
|
9028
9030
|
var passive = {
|
|
@@ -9072,20 +9074,20 @@ function effect(_ref) {
|
|
|
9072
9074
|
effect: effect,
|
|
9073
9075
|
data: {}
|
|
9074
9076
|
});
|
|
9075
|
-
;//
|
|
9077
|
+
;// ./node_modules/@popperjs/core/lib/utils/getBasePlacement.js
|
|
9076
9078
|
|
|
9077
9079
|
function getBasePlacement(placement) {
|
|
9078
9080
|
return placement.split('-')[0];
|
|
9079
9081
|
}
|
|
9080
|
-
;//
|
|
9082
|
+
;// ./node_modules/@popperjs/core/lib/utils/getVariation.js
|
|
9081
9083
|
function getVariation(placement) {
|
|
9082
9084
|
return placement.split('-')[1];
|
|
9083
9085
|
}
|
|
9084
|
-
;//
|
|
9086
|
+
;// ./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js
|
|
9085
9087
|
function getMainAxisFromPlacement(placement) {
|
|
9086
9088
|
return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';
|
|
9087
9089
|
}
|
|
9088
|
-
;//
|
|
9090
|
+
;// ./node_modules/@popperjs/core/lib/utils/computeOffsets.js
|
|
9089
9091
|
|
|
9090
9092
|
|
|
9091
9093
|
|
|
@@ -9156,7 +9158,7 @@ function computeOffsets(_ref) {
|
|
|
9156
9158
|
|
|
9157
9159
|
return offsets;
|
|
9158
9160
|
}
|
|
9159
|
-
;//
|
|
9161
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js
|
|
9160
9162
|
|
|
9161
9163
|
|
|
9162
9164
|
function popperOffsets(_ref) {
|
|
@@ -9182,7 +9184,7 @@ function popperOffsets(_ref) {
|
|
|
9182
9184
|
fn: popperOffsets,
|
|
9183
9185
|
data: {}
|
|
9184
9186
|
});
|
|
9185
|
-
;//
|
|
9187
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/computeStyles.js
|
|
9186
9188
|
|
|
9187
9189
|
|
|
9188
9190
|
|
|
@@ -9352,7 +9354,7 @@ function computeStyles(_ref5) {
|
|
|
9352
9354
|
fn: computeStyles,
|
|
9353
9355
|
data: {}
|
|
9354
9356
|
});
|
|
9355
|
-
;//
|
|
9357
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/applyStyles.js
|
|
9356
9358
|
|
|
9357
9359
|
// This modifier takes the styles prepared by the `computeStyles` modifier
|
|
9358
9360
|
// and applies them to the HTMLElements such as popper and arrow
|
|
@@ -9437,7 +9439,7 @@ function applyStyles_effect(_ref2) {
|
|
|
9437
9439
|
effect: applyStyles_effect,
|
|
9438
9440
|
requires: ['computeStyles']
|
|
9439
9441
|
});
|
|
9440
|
-
;//
|
|
9442
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/offset.js
|
|
9441
9443
|
|
|
9442
9444
|
// eslint-disable-next-line import/no-unused-modules
|
|
9443
9445
|
|
|
@@ -9492,7 +9494,7 @@ function offset(_ref2) {
|
|
|
9492
9494
|
requires: ['popperOffsets'],
|
|
9493
9495
|
fn: offset
|
|
9494
9496
|
});
|
|
9495
|
-
;//
|
|
9497
|
+
;// ./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js
|
|
9496
9498
|
var hash = {
|
|
9497
9499
|
left: 'right',
|
|
9498
9500
|
right: 'left',
|
|
@@ -9504,7 +9506,7 @@ function getOppositePlacement(placement) {
|
|
|
9504
9506
|
return hash[matched];
|
|
9505
9507
|
});
|
|
9506
9508
|
}
|
|
9507
|
-
;//
|
|
9509
|
+
;// ./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js
|
|
9508
9510
|
var getOppositeVariationPlacement_hash = {
|
|
9509
9511
|
start: 'end',
|
|
9510
9512
|
end: 'start'
|
|
@@ -9514,7 +9516,7 @@ function getOppositeVariationPlacement(placement) {
|
|
|
9514
9516
|
return getOppositeVariationPlacement_hash[matched];
|
|
9515
9517
|
});
|
|
9516
9518
|
}
|
|
9517
|
-
;//
|
|
9519
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js
|
|
9518
9520
|
|
|
9519
9521
|
|
|
9520
9522
|
|
|
@@ -9546,7 +9548,7 @@ function getViewportRect(element, strategy) {
|
|
|
9546
9548
|
y: y
|
|
9547
9549
|
};
|
|
9548
9550
|
}
|
|
9549
|
-
;//
|
|
9551
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js
|
|
9550
9552
|
|
|
9551
9553
|
|
|
9552
9554
|
|
|
@@ -9576,7 +9578,7 @@ function getDocumentRect(element) {
|
|
|
9576
9578
|
y: y
|
|
9577
9579
|
};
|
|
9578
9580
|
}
|
|
9579
|
-
;//
|
|
9581
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/contains.js
|
|
9580
9582
|
|
|
9581
9583
|
function contains(parent, child) {
|
|
9582
9584
|
var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method
|
|
@@ -9600,7 +9602,7 @@ function contains(parent, child) {
|
|
|
9600
9602
|
|
|
9601
9603
|
return false;
|
|
9602
9604
|
}
|
|
9603
|
-
;//
|
|
9605
|
+
;// ./node_modules/@popperjs/core/lib/utils/rectToClientRect.js
|
|
9604
9606
|
function rectToClientRect(rect) {
|
|
9605
9607
|
return Object.assign({}, rect, {
|
|
9606
9608
|
left: rect.x,
|
|
@@ -9609,7 +9611,7 @@ function rectToClientRect(rect) {
|
|
|
9609
9611
|
bottom: rect.y + rect.height
|
|
9610
9612
|
});
|
|
9611
9613
|
}
|
|
9612
|
-
;//
|
|
9614
|
+
;// ./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js
|
|
9613
9615
|
|
|
9614
9616
|
|
|
9615
9617
|
|
|
@@ -9680,7 +9682,7 @@ function getClippingRect(element, boundary, rootBoundary, strategy) {
|
|
|
9680
9682
|
clippingRect.y = clippingRect.top;
|
|
9681
9683
|
return clippingRect;
|
|
9682
9684
|
}
|
|
9683
|
-
;//
|
|
9685
|
+
;// ./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js
|
|
9684
9686
|
function getFreshSideObject() {
|
|
9685
9687
|
return {
|
|
9686
9688
|
top: 0,
|
|
@@ -9689,19 +9691,19 @@ function getFreshSideObject() {
|
|
|
9689
9691
|
left: 0
|
|
9690
9692
|
};
|
|
9691
9693
|
}
|
|
9692
|
-
;//
|
|
9694
|
+
;// ./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js
|
|
9693
9695
|
|
|
9694
9696
|
function mergePaddingObject(paddingObject) {
|
|
9695
9697
|
return Object.assign({}, getFreshSideObject(), paddingObject);
|
|
9696
9698
|
}
|
|
9697
|
-
;//
|
|
9699
|
+
;// ./node_modules/@popperjs/core/lib/utils/expandToHashMap.js
|
|
9698
9700
|
function expandToHashMap(value, keys) {
|
|
9699
9701
|
return keys.reduce(function (hashMap, key) {
|
|
9700
9702
|
hashMap[key] = value;
|
|
9701
9703
|
return hashMap;
|
|
9702
9704
|
}, {});
|
|
9703
9705
|
}
|
|
9704
|
-
;//
|
|
9706
|
+
;// ./node_modules/@popperjs/core/lib/utils/detectOverflow.js
|
|
9705
9707
|
|
|
9706
9708
|
|
|
9707
9709
|
|
|
@@ -9767,7 +9769,7 @@ function detectOverflow(state, options) {
|
|
|
9767
9769
|
|
|
9768
9770
|
return overflowOffsets;
|
|
9769
9771
|
}
|
|
9770
|
-
;//
|
|
9772
|
+
;// ./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js
|
|
9771
9773
|
|
|
9772
9774
|
|
|
9773
9775
|
|
|
@@ -9811,7 +9813,7 @@ function computeAutoPlacement(state, options) {
|
|
|
9811
9813
|
return overflows[a] - overflows[b];
|
|
9812
9814
|
});
|
|
9813
9815
|
}
|
|
9814
|
-
;//
|
|
9816
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/flip.js
|
|
9815
9817
|
|
|
9816
9818
|
|
|
9817
9819
|
|
|
@@ -9959,11 +9961,11 @@ function flip(_ref) {
|
|
|
9959
9961
|
_skip: false
|
|
9960
9962
|
}
|
|
9961
9963
|
});
|
|
9962
|
-
;//
|
|
9964
|
+
;// ./node_modules/@popperjs/core/lib/utils/getAltAxis.js
|
|
9963
9965
|
function getAltAxis(axis) {
|
|
9964
9966
|
return axis === 'x' ? 'y' : 'x';
|
|
9965
9967
|
}
|
|
9966
|
-
;//
|
|
9968
|
+
;// ./node_modules/@popperjs/core/lib/utils/within.js
|
|
9967
9969
|
|
|
9968
9970
|
function within(min, value, max) {
|
|
9969
9971
|
return math_max(min, math_min(value, max));
|
|
@@ -9972,7 +9974,7 @@ function withinMaxClamp(min, value, max) {
|
|
|
9972
9974
|
var v = within(min, value, max);
|
|
9973
9975
|
return v > max ? max : v;
|
|
9974
9976
|
}
|
|
9975
|
-
;//
|
|
9977
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js
|
|
9976
9978
|
|
|
9977
9979
|
|
|
9978
9980
|
|
|
@@ -10115,7 +10117,7 @@ function preventOverflow(_ref) {
|
|
|
10115
10117
|
fn: preventOverflow,
|
|
10116
10118
|
requiresIfExists: ['offset']
|
|
10117
10119
|
});
|
|
10118
|
-
;//
|
|
10120
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/arrow.js
|
|
10119
10121
|
|
|
10120
10122
|
|
|
10121
10123
|
|
|
@@ -10206,7 +10208,7 @@ function arrow_effect(_ref2) {
|
|
|
10206
10208
|
requires: ['popperOffsets'],
|
|
10207
10209
|
requiresIfExists: ['preventOverflow']
|
|
10208
10210
|
});
|
|
10209
|
-
;//
|
|
10211
|
+
;// ./node_modules/@popperjs/core/lib/modifiers/hide.js
|
|
10210
10212
|
|
|
10211
10213
|
|
|
10212
10214
|
|
|
@@ -10268,7 +10270,7 @@ function hide(_ref) {
|
|
|
10268
10270
|
requiresIfExists: ['preventOverflow'],
|
|
10269
10271
|
fn: hide
|
|
10270
10272
|
});
|
|
10271
|
-
;//
|
|
10273
|
+
;// ./node_modules/@popperjs/core/lib/popper.js
|
|
10272
10274
|
|
|
10273
10275
|
|
|
10274
10276
|
|
|
@@ -10289,7 +10291,7 @@ var popper_createPopper = /*#__PURE__*/popperGenerator({
|
|
|
10289
10291
|
// eslint-disable-next-line import/no-unused-modules
|
|
10290
10292
|
|
|
10291
10293
|
|
|
10292
|
-
;//
|
|
10294
|
+
;// ./node_modules/tippy.js/dist/tippy.esm.js
|
|
10293
10295
|
/**!
|
|
10294
10296
|
* tippy.js v6.3.7
|
|
10295
10297
|
* (c) 2017-2021 atomiks
|
|
@@ -12743,9 +12745,9 @@ tippy.setDefaultProps({
|
|
|
12743
12745
|
|
|
12744
12746
|
//# sourceMappingURL=tippy.esm.js.map
|
|
12745
12747
|
|
|
12746
|
-
;//
|
|
12748
|
+
;// external {"amd":"react-dom","commonjs2":"react-dom","commonjs":"react-dom","root":"ReactDOM","umd":"react-dom"}
|
|
12747
12749
|
const external_amd_react_dom_commonjs2_react_dom_commonjs_react_dom_root_ReactDOM_umd_react_dom_namespaceObject = require("react-dom");
|
|
12748
|
-
;//
|
|
12750
|
+
;// ./node_modules/@tippyjs/react/dist/tippy-react.esm.js
|
|
12749
12751
|
|
|
12750
12752
|
|
|
12751
12753
|
|
|
@@ -13266,12 +13268,12 @@ var index = /*#__PURE__*/forwardRef( /*#__PURE__*/TippyGenerator(tippy_esm));
|
|
|
13266
13268
|
|
|
13267
13269
|
//# sourceMappingURL=tippy-react.esm.js.map
|
|
13268
13270
|
|
|
13269
|
-
;//
|
|
13271
|
+
;// ./contexts/GlossaryTerms.ts
|
|
13270
13272
|
|
|
13271
13273
|
const GlossaryContext = (0,external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_.createContext)([]);
|
|
13272
13274
|
/* harmony default export */ const GlossaryTerms = (GlossaryContext);
|
|
13273
13275
|
|
|
13274
|
-
;//
|
|
13276
|
+
;// ./components/Glossary/index.tsx
|
|
13275
13277
|
|
|
13276
13278
|
|
|
13277
13279
|
|
|
@@ -13292,9 +13294,9 @@ const GlossaryWithContext = props => {
|
|
|
13292
13294
|
};
|
|
13293
13295
|
|
|
13294
13296
|
|
|
13295
|
-
;//
|
|
13297
|
+
;// external {"amd":"react-dom/server","commonjs2":"react-dom/server","commonjs":"react-dom/server","root":"ReactDOM/server","umd":"react-dom/server"}
|
|
13296
13298
|
const server_namespaceObject = require("react-dom/server");
|
|
13297
|
-
;//
|
|
13299
|
+
;// ./components/HTMLBlock/index.tsx
|
|
13298
13300
|
|
|
13299
13301
|
|
|
13300
13302
|
const MATCH_SCRIPT_TAGS = /<script\b[^>]*>([\s\S]*?)<\/script *>\n?/gim;
|
|
@@ -13325,7 +13327,7 @@ const HTMLBlock = ({ children = '', runScripts, safeMode = false }) => {
|
|
|
13325
13327
|
};
|
|
13326
13328
|
/* harmony default export */ const components_HTMLBlock = (HTMLBlock);
|
|
13327
13329
|
|
|
13328
|
-
;//
|
|
13330
|
+
;// ./components/Heading/index.tsx
|
|
13329
13331
|
var Heading_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
13330
13332
|
var t = {};
|
|
13331
13333
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -13350,7 +13352,7 @@ const Heading = (_a) => {
|
|
|
13350
13352
|
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}` }));
|
|
13351
13353
|
/* harmony default export */ const components_Heading = (CreateHeading);
|
|
13352
13354
|
|
|
13353
|
-
;//
|
|
13355
|
+
;// ./components/Image/index.tsx
|
|
13354
13356
|
|
|
13355
13357
|
const Image = (Props) => {
|
|
13356
13358
|
const { align = '', alt = '', border = false, caption, className = '', height = 'auto', src, title = '', width = 'auto', lazy = true, children, } = Props;
|
|
@@ -13393,7 +13395,7 @@ const Image = (Props) => {
|
|
|
13393
13395
|
};
|
|
13394
13396
|
/* harmony default export */ const components_Image = (Image);
|
|
13395
13397
|
|
|
13396
|
-
;//
|
|
13398
|
+
;// ./components/Table/index.tsx
|
|
13397
13399
|
|
|
13398
13400
|
const Table = (props) => {
|
|
13399
13401
|
const { children } = props;
|
|
@@ -13403,7 +13405,7 @@ const Table = (props) => {
|
|
|
13403
13405
|
};
|
|
13404
13406
|
/* harmony default export */ const components_Table = (Table);
|
|
13405
13407
|
|
|
13406
|
-
;//
|
|
13408
|
+
;// ./components/Tabs/index.tsx
|
|
13407
13409
|
|
|
13408
13410
|
|
|
13409
13411
|
const Tab = ({ children }) => {
|
|
@@ -13420,7 +13422,7 @@ const Tabs = ({ children }) => {
|
|
|
13420
13422
|
};
|
|
13421
13423
|
/* harmony default export */ const components_Tabs = (Tabs);
|
|
13422
13424
|
|
|
13423
|
-
;//
|
|
13425
|
+
;// ./components/TableOfContents/index.tsx
|
|
13424
13426
|
|
|
13425
13427
|
function TableOfContents({ children }) {
|
|
13426
13428
|
return (external_amd_react_commonjs_react_commonjs2_react_root_React_umd_react_default().createElement("nav", null,
|
|
@@ -13433,7 +13435,7 @@ function TableOfContents({ children }) {
|
|
|
13433
13435
|
}
|
|
13434
13436
|
/* harmony default export */ const components_TableOfContents = (TableOfContents);
|
|
13435
13437
|
|
|
13436
|
-
;//
|
|
13438
|
+
;// ./components/index.ts
|
|
13437
13439
|
|
|
13438
13440
|
|
|
13439
13441
|
|
|
@@ -13449,7 +13451,7 @@ function TableOfContents({ children }) {
|
|
|
13449
13451
|
|
|
13450
13452
|
|
|
13451
13453
|
|
|
13452
|
-
;//
|
|
13454
|
+
;// ./options.js
|
|
13453
13455
|
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; }
|
|
13454
13456
|
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; }
|
|
13455
13457
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
@@ -13524,7 +13526,7 @@ const parseOptions = (userOpts = {}) => {
|
|
|
13524
13526
|
return opts;
|
|
13525
13527
|
};
|
|
13526
13528
|
|
|
13527
|
-
;//
|
|
13529
|
+
;// ./node_modules/mdast-util-to-string/lib/index.js
|
|
13528
13530
|
/**
|
|
13529
13531
|
* @typedef {import('mdast').Nodes} Nodes
|
|
13530
13532
|
*
|
|
@@ -13634,7 +13636,7 @@ function node(value) {
|
|
|
13634
13636
|
return Boolean(value && typeof value === 'object')
|
|
13635
13637
|
}
|
|
13636
13638
|
|
|
13637
|
-
;//
|
|
13639
|
+
;// ./node_modules/micromark-util-chunked/index.js
|
|
13638
13640
|
/**
|
|
13639
13641
|
* Like `Array#splice`, but smarter for giant arrays.
|
|
13640
13642
|
*
|
|
@@ -13717,7 +13719,7 @@ function push(list, items) {
|
|
|
13717
13719
|
return items
|
|
13718
13720
|
}
|
|
13719
13721
|
|
|
13720
|
-
;//
|
|
13722
|
+
;// ./node_modules/micromark-util-subtokenize/index.js
|
|
13721
13723
|
/**
|
|
13722
13724
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
13723
13725
|
* @typedef {import('micromark-util-types').Event} Event
|
|
@@ -13943,7 +13945,7 @@ function subcontent(events, eventIndex) {
|
|
|
13943
13945
|
return gaps
|
|
13944
13946
|
}
|
|
13945
13947
|
|
|
13946
|
-
;//
|
|
13948
|
+
;// ./node_modules/micromark/lib/postprocess.js
|
|
13947
13949
|
/**
|
|
13948
13950
|
* @typedef {import('micromark-util-types').Event} Event
|
|
13949
13951
|
*/
|
|
@@ -13961,7 +13963,7 @@ function postprocess(events) {
|
|
|
13961
13963
|
return events
|
|
13962
13964
|
}
|
|
13963
13965
|
|
|
13964
|
-
;//
|
|
13966
|
+
;// ./node_modules/micromark-util-combine-extensions/index.js
|
|
13965
13967
|
/**
|
|
13966
13968
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
13967
13969
|
* @typedef {import('micromark-util-types').Handles} Handles
|
|
@@ -14099,7 +14101,7 @@ function htmlExtension(all, extension) {
|
|
|
14099
14101
|
}
|
|
14100
14102
|
}
|
|
14101
14103
|
|
|
14102
|
-
;//
|
|
14104
|
+
;// ./node_modules/micromark-util-character/index.js
|
|
14103
14105
|
/**
|
|
14104
14106
|
* @typedef {import('micromark-util-types').Code} Code
|
|
14105
14107
|
*/
|
|
@@ -14344,7 +14346,7 @@ function regexCheck(regex) {
|
|
|
14344
14346
|
return code !== null && code > -1 && regex.test(String.fromCharCode(code));
|
|
14345
14347
|
}
|
|
14346
14348
|
}
|
|
14347
|
-
;//
|
|
14349
|
+
;// ./node_modules/micromark-factory-space/index.js
|
|
14348
14350
|
/**
|
|
14349
14351
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
14350
14352
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -14412,7 +14414,7 @@ function factorySpace(effects, ok, type, max) {
|
|
|
14412
14414
|
}
|
|
14413
14415
|
}
|
|
14414
14416
|
|
|
14415
|
-
;//
|
|
14417
|
+
;// ./node_modules/micromark/lib/initialize/content.js
|
|
14416
14418
|
/**
|
|
14417
14419
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
14418
14420
|
* @typedef {import('micromark-util-types').Initializer} Initializer
|
|
@@ -14493,7 +14495,7 @@ function initializeContent(effects) {
|
|
|
14493
14495
|
}
|
|
14494
14496
|
}
|
|
14495
14497
|
|
|
14496
|
-
;//
|
|
14498
|
+
;// ./node_modules/micromark/lib/initialize/document.js
|
|
14497
14499
|
/**
|
|
14498
14500
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
14499
14501
|
* @typedef {import('micromark-util-types').ContainerState} ContainerState
|
|
@@ -14877,7 +14879,7 @@ function tokenizeContainer(effects, ok, nok) {
|
|
|
14877
14879
|
)
|
|
14878
14880
|
}
|
|
14879
14881
|
|
|
14880
|
-
;//
|
|
14882
|
+
;// ./node_modules/micromark-core-commonmark/lib/blank-line.js
|
|
14881
14883
|
/**
|
|
14882
14884
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
14883
14885
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -14939,7 +14941,7 @@ function tokenizeBlankLine(effects, ok, nok) {
|
|
|
14939
14941
|
}
|
|
14940
14942
|
}
|
|
14941
14943
|
|
|
14942
|
-
;//
|
|
14944
|
+
;// ./node_modules/micromark-core-commonmark/lib/content.js
|
|
14943
14945
|
/**
|
|
14944
14946
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
14945
14947
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -15109,7 +15111,7 @@ function tokenizeContinuation(effects, ok, nok) {
|
|
|
15109
15111
|
}
|
|
15110
15112
|
}
|
|
15111
15113
|
|
|
15112
|
-
;//
|
|
15114
|
+
;// ./node_modules/micromark/lib/initialize/flow.js
|
|
15113
15115
|
/**
|
|
15114
15116
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
15115
15117
|
* @typedef {import('micromark-util-types').Initializer} Initializer
|
|
@@ -15179,7 +15181,7 @@ function initializeFlow(effects) {
|
|
|
15179
15181
|
}
|
|
15180
15182
|
}
|
|
15181
15183
|
|
|
15182
|
-
;//
|
|
15184
|
+
;// ./node_modules/micromark/lib/initialize/text.js
|
|
15183
15185
|
/**
|
|
15184
15186
|
* @typedef {import('micromark-util-types').Code} Code
|
|
15185
15187
|
* @typedef {import('micromark-util-types').InitialConstruct} InitialConstruct
|
|
@@ -15391,7 +15393,7 @@ function resolveAllLineSuffixes(events, context) {
|
|
|
15391
15393
|
return events
|
|
15392
15394
|
}
|
|
15393
15395
|
|
|
15394
|
-
;//
|
|
15396
|
+
;// ./node_modules/micromark-util-resolve-all/index.js
|
|
15395
15397
|
/**
|
|
15396
15398
|
* @typedef {import('micromark-util-types').Event} Event
|
|
15397
15399
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -15427,7 +15429,7 @@ function resolveAll(constructs, events, context) {
|
|
|
15427
15429
|
return events
|
|
15428
15430
|
}
|
|
15429
15431
|
|
|
15430
|
-
;//
|
|
15432
|
+
;// ./node_modules/micromark/lib/create-tokenizer.js
|
|
15431
15433
|
/**
|
|
15432
15434
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
15433
15435
|
* @typedef {import('micromark-util-types').Code} Code
|
|
@@ -16011,7 +16013,7 @@ function serializeChunks(chunks, expandTabs) {
|
|
|
16011
16013
|
return result.join('')
|
|
16012
16014
|
}
|
|
16013
16015
|
|
|
16014
|
-
;//
|
|
16016
|
+
;// ./node_modules/micromark-core-commonmark/lib/thematic-break.js
|
|
16015
16017
|
/**
|
|
16016
16018
|
* @typedef {import('micromark-util-types').Code} Code
|
|
16017
16019
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -16114,7 +16116,7 @@ function tokenizeThematicBreak(effects, ok, nok) {
|
|
|
16114
16116
|
}
|
|
16115
16117
|
}
|
|
16116
16118
|
|
|
16117
|
-
;//
|
|
16119
|
+
;// ./node_modules/micromark-core-commonmark/lib/list.js
|
|
16118
16120
|
/**
|
|
16119
16121
|
* @typedef {import('micromark-util-types').Code} Code
|
|
16120
16122
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -16384,7 +16386,7 @@ function tokenizeListItemPrefixWhitespace(effects, ok, nok) {
|
|
|
16384
16386
|
}
|
|
16385
16387
|
}
|
|
16386
16388
|
|
|
16387
|
-
;//
|
|
16389
|
+
;// ./node_modules/micromark-core-commonmark/lib/block-quote.js
|
|
16388
16390
|
/**
|
|
16389
16391
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
16390
16392
|
* @typedef {import('micromark-util-types').Exiter} Exiter
|
|
@@ -16532,7 +16534,7 @@ function exit(effects) {
|
|
|
16532
16534
|
effects.exit('blockQuote')
|
|
16533
16535
|
}
|
|
16534
16536
|
|
|
16535
|
-
;//
|
|
16537
|
+
;// ./node_modules/micromark-factory-destination/index.js
|
|
16536
16538
|
/**
|
|
16537
16539
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
16538
16540
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -16755,7 +16757,7 @@ function factoryDestination(
|
|
|
16755
16757
|
}
|
|
16756
16758
|
}
|
|
16757
16759
|
|
|
16758
|
-
;//
|
|
16760
|
+
;// ./node_modules/micromark-factory-label/index.js
|
|
16759
16761
|
/**
|
|
16760
16762
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
16761
16763
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -16916,7 +16918,7 @@ function factoryLabel(effects, ok, nok, type, markerType, stringType) {
|
|
|
16916
16918
|
}
|
|
16917
16919
|
}
|
|
16918
16920
|
|
|
16919
|
-
;//
|
|
16921
|
+
;// ./node_modules/micromark-factory-title/index.js
|
|
16920
16922
|
/**
|
|
16921
16923
|
* @typedef {import('micromark-util-types').Code} Code
|
|
16922
16924
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
@@ -17074,7 +17076,7 @@ function factoryTitle(effects, ok, nok, type, markerType, stringType) {
|
|
|
17074
17076
|
}
|
|
17075
17077
|
}
|
|
17076
17078
|
|
|
17077
|
-
;//
|
|
17079
|
+
;// ./node_modules/micromark-factory-whitespace/index.js
|
|
17078
17080
|
/**
|
|
17079
17081
|
* @typedef {import('micromark-util-types').Effects} Effects
|
|
17080
17082
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17125,7 +17127,7 @@ function factoryWhitespace(effects, ok) {
|
|
|
17125
17127
|
}
|
|
17126
17128
|
}
|
|
17127
17129
|
|
|
17128
|
-
;//
|
|
17130
|
+
;// ./node_modules/micromark-util-normalize-identifier/index.js
|
|
17129
17131
|
/**
|
|
17130
17132
|
* Normalize an identifier (as found in references, definitions).
|
|
17131
17133
|
*
|
|
@@ -17163,7 +17165,7 @@ function normalizeIdentifier(value) {
|
|
|
17163
17165
|
)
|
|
17164
17166
|
}
|
|
17165
17167
|
|
|
17166
|
-
;//
|
|
17168
|
+
;// ./node_modules/micromark-core-commonmark/lib/definition.js
|
|
17167
17169
|
/**
|
|
17168
17170
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
17169
17171
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17447,7 +17449,7 @@ function tokenizeTitleBefore(effects, ok, nok) {
|
|
|
17447
17449
|
}
|
|
17448
17450
|
}
|
|
17449
17451
|
|
|
17450
|
-
;//
|
|
17452
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-indented.js
|
|
17451
17453
|
/**
|
|
17452
17454
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
17453
17455
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -17632,7 +17634,7 @@ function tokenizeFurtherStart(effects, ok, nok) {
|
|
|
17632
17634
|
}
|
|
17633
17635
|
}
|
|
17634
17636
|
|
|
17635
|
-
;//
|
|
17637
|
+
;// ./node_modules/micromark-core-commonmark/lib/heading-atx.js
|
|
17636
17638
|
/**
|
|
17637
17639
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
17638
17640
|
* @typedef {import('micromark-util-types').Resolver} Resolver
|
|
@@ -17839,7 +17841,7 @@ function tokenizeHeadingAtx(effects, ok, nok) {
|
|
|
17839
17841
|
}
|
|
17840
17842
|
}
|
|
17841
17843
|
|
|
17842
|
-
;//
|
|
17844
|
+
;// ./node_modules/micromark-core-commonmark/lib/setext-underline.js
|
|
17843
17845
|
/**
|
|
17844
17846
|
* @typedef {import('micromark-util-types').Code} Code
|
|
17845
17847
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -18023,7 +18025,7 @@ function tokenizeSetextUnderline(effects, ok, nok) {
|
|
|
18023
18025
|
}
|
|
18024
18026
|
}
|
|
18025
18027
|
|
|
18026
|
-
;//
|
|
18028
|
+
;// ./node_modules/micromark-util-html-tag-name/index.js
|
|
18027
18029
|
/**
|
|
18028
18030
|
* List of lowercase HTML “block” tag names.
|
|
18029
18031
|
*
|
|
@@ -18118,7 +18120,7 @@ const htmlBlockNames = [
|
|
|
18118
18120
|
*/
|
|
18119
18121
|
const htmlRawNames = ['pre', 'script', 'style', 'textarea']
|
|
18120
18122
|
|
|
18121
|
-
;//
|
|
18123
|
+
;// ./node_modules/micromark-core-commonmark/lib/html-flow.js
|
|
18122
18124
|
/**
|
|
18123
18125
|
* @typedef {import('micromark-util-types').Code} Code
|
|
18124
18126
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -19030,7 +19032,7 @@ function tokenizeBlankLineBefore(effects, ok, nok) {
|
|
|
19030
19032
|
}
|
|
19031
19033
|
}
|
|
19032
19034
|
|
|
19033
|
-
;//
|
|
19035
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-fenced.js
|
|
19034
19036
|
/**
|
|
19035
19037
|
* @typedef {import('micromark-util-types').Code} Code
|
|
19036
19038
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -19512,7 +19514,7 @@ function tokenizeNonLazyContinuation(effects, ok, nok) {
|
|
|
19512
19514
|
}
|
|
19513
19515
|
}
|
|
19514
19516
|
|
|
19515
|
-
;//
|
|
19517
|
+
;// ./node_modules/character-entities/index.js
|
|
19516
19518
|
/**
|
|
19517
19519
|
* Map of named character references.
|
|
19518
19520
|
*
|
|
@@ -21646,7 +21648,7 @@ const characterEntities = {
|
|
|
21646
21648
|
zwnj: ''
|
|
21647
21649
|
}
|
|
21648
21650
|
|
|
21649
|
-
;//
|
|
21651
|
+
;// ./node_modules/decode-named-character-reference/index.js
|
|
21650
21652
|
|
|
21651
21653
|
|
|
21652
21654
|
const own = {}.hasOwnProperty
|
|
@@ -21666,7 +21668,7 @@ function decodeNamedCharacterReference(value) {
|
|
|
21666
21668
|
return own.call(characterEntities, value) ? characterEntities[value] : false
|
|
21667
21669
|
}
|
|
21668
21670
|
|
|
21669
|
-
;//
|
|
21671
|
+
;// ./node_modules/micromark-core-commonmark/lib/character-reference.js
|
|
21670
21672
|
/**
|
|
21671
21673
|
* @typedef {import('micromark-util-types').Code} Code
|
|
21672
21674
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -21817,7 +21819,7 @@ function tokenizeCharacterReference(effects, ok, nok) {
|
|
|
21817
21819
|
}
|
|
21818
21820
|
}
|
|
21819
21821
|
|
|
21820
|
-
;//
|
|
21822
|
+
;// ./node_modules/micromark-core-commonmark/lib/character-escape.js
|
|
21821
21823
|
/**
|
|
21822
21824
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
21823
21825
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -21880,7 +21882,7 @@ function tokenizeCharacterEscape(effects, ok, nok) {
|
|
|
21880
21882
|
}
|
|
21881
21883
|
}
|
|
21882
21884
|
|
|
21883
|
-
;//
|
|
21885
|
+
;// ./node_modules/micromark-core-commonmark/lib/line-ending.js
|
|
21884
21886
|
/**
|
|
21885
21887
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
21886
21888
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -21912,7 +21914,7 @@ function tokenizeLineEnding(effects, ok) {
|
|
|
21912
21914
|
}
|
|
21913
21915
|
}
|
|
21914
21916
|
|
|
21915
|
-
;//
|
|
21917
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-end.js
|
|
21916
21918
|
/**
|
|
21917
21919
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
21918
21920
|
* @typedef {import('micromark-util-types').Event} Event
|
|
@@ -22531,7 +22533,7 @@ function tokenizeReferenceCollapsed(effects, ok, nok) {
|
|
|
22531
22533
|
}
|
|
22532
22534
|
}
|
|
22533
22535
|
|
|
22534
|
-
;//
|
|
22536
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-start-image.js
|
|
22535
22537
|
/**
|
|
22536
22538
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
22537
22539
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -22634,7 +22636,7 @@ function tokenizeLabelStartImage(effects, ok, nok) {
|
|
|
22634
22636
|
}
|
|
22635
22637
|
}
|
|
22636
22638
|
|
|
22637
|
-
;//
|
|
22639
|
+
;// ./node_modules/micromark-util-classify-character/index.js
|
|
22638
22640
|
/**
|
|
22639
22641
|
* @typedef {import('micromark-util-types').Code} Code
|
|
22640
22642
|
*/
|
|
@@ -22667,7 +22669,7 @@ function classifyCharacter(code) {
|
|
|
22667
22669
|
}
|
|
22668
22670
|
}
|
|
22669
22671
|
|
|
22670
|
-
;//
|
|
22672
|
+
;// ./node_modules/micromark-core-commonmark/lib/attention.js
|
|
22671
22673
|
/**
|
|
22672
22674
|
* @typedef {import('micromark-util-types').Code} Code
|
|
22673
22675
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -22932,7 +22934,7 @@ function movePoint(point, offset) {
|
|
|
22932
22934
|
point._bufferIndex += offset
|
|
22933
22935
|
}
|
|
22934
22936
|
|
|
22935
|
-
;//
|
|
22937
|
+
;// ./node_modules/micromark-core-commonmark/lib/autolink.js
|
|
22936
22938
|
/**
|
|
22937
22939
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
22938
22940
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -23164,7 +23166,7 @@ function tokenizeAutolink(effects, ok, nok) {
|
|
|
23164
23166
|
}
|
|
23165
23167
|
}
|
|
23166
23168
|
|
|
23167
|
-
;//
|
|
23169
|
+
;// ./node_modules/micromark-core-commonmark/lib/html-text.js
|
|
23168
23170
|
/**
|
|
23169
23171
|
* @typedef {import('micromark-util-types').Code} Code
|
|
23170
23172
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
@@ -23873,7 +23875,7 @@ function tokenizeHtmlText(effects, ok, nok) {
|
|
|
23873
23875
|
}
|
|
23874
23876
|
}
|
|
23875
23877
|
|
|
23876
|
-
;//
|
|
23878
|
+
;// ./node_modules/micromark-core-commonmark/lib/label-start-link.js
|
|
23877
23879
|
/**
|
|
23878
23880
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
23879
23881
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -23929,7 +23931,7 @@ function tokenizeLabelStartLink(effects, ok, nok) {
|
|
|
23929
23931
|
}
|
|
23930
23932
|
}
|
|
23931
23933
|
|
|
23932
|
-
;//
|
|
23934
|
+
;// ./node_modules/micromark-core-commonmark/lib/hard-break-escape.js
|
|
23933
23935
|
/**
|
|
23934
23936
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
23935
23937
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -23988,7 +23990,7 @@ function tokenizeHardBreakEscape(effects, ok, nok) {
|
|
|
23988
23990
|
}
|
|
23989
23991
|
}
|
|
23990
23992
|
|
|
23991
|
-
;//
|
|
23993
|
+
;// ./node_modules/micromark-core-commonmark/lib/code-text.js
|
|
23992
23994
|
/**
|
|
23993
23995
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
23994
23996
|
* @typedef {import('micromark-util-types').Previous} Previous
|
|
@@ -24227,7 +24229,7 @@ function tokenizeCodeText(effects, ok, nok) {
|
|
|
24227
24229
|
}
|
|
24228
24230
|
}
|
|
24229
24231
|
|
|
24230
|
-
;//
|
|
24232
|
+
;// ./node_modules/micromark/lib/constructs.js
|
|
24231
24233
|
/**
|
|
24232
24234
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
24233
24235
|
*/
|
|
@@ -24314,7 +24316,7 @@ const disable = {
|
|
|
24314
24316
|
null: []
|
|
24315
24317
|
}
|
|
24316
24318
|
|
|
24317
|
-
;//
|
|
24319
|
+
;// ./node_modules/micromark/lib/parse.js
|
|
24318
24320
|
/**
|
|
24319
24321
|
* @typedef {import('micromark-util-types').Create} Create
|
|
24320
24322
|
* @typedef {import('micromark-util-types').FullNormalizedExtension} FullNormalizedExtension
|
|
@@ -24366,7 +24368,7 @@ function parse(options) {
|
|
|
24366
24368
|
}
|
|
24367
24369
|
}
|
|
24368
24370
|
|
|
24369
|
-
;//
|
|
24371
|
+
;// ./node_modules/micromark/lib/preprocess.js
|
|
24370
24372
|
/**
|
|
24371
24373
|
* @typedef {import('micromark-util-types').Chunk} Chunk
|
|
24372
24374
|
* @typedef {import('micromark-util-types').Code} Code
|
|
@@ -24481,7 +24483,7 @@ function preprocess() {
|
|
|
24481
24483
|
}
|
|
24482
24484
|
}
|
|
24483
24485
|
|
|
24484
|
-
;//
|
|
24486
|
+
;// ./node_modules/micromark-util-decode-numeric-character-reference/index.js
|
|
24485
24487
|
/**
|
|
24486
24488
|
* Turn the number (in string form as either hexa- or plain decimal) coming from
|
|
24487
24489
|
* a numeric character reference into a character.
|
|
@@ -24514,7 +24516,7 @@ function decodeNumericCharacterReference(value, base) {
|
|
|
24514
24516
|
}
|
|
24515
24517
|
return String.fromCodePoint(code);
|
|
24516
24518
|
}
|
|
24517
|
-
;//
|
|
24519
|
+
;// ./node_modules/micromark-util-decode-string/index.js
|
|
24518
24520
|
|
|
24519
24521
|
|
|
24520
24522
|
const characterEscapeOrReference =
|
|
@@ -24558,7 +24560,7 @@ function decode($0, $1, $2) {
|
|
|
24558
24560
|
return decodeNamedCharacterReference($2) || $0
|
|
24559
24561
|
}
|
|
24560
24562
|
|
|
24561
|
-
;//
|
|
24563
|
+
;// ./node_modules/unist-util-stringify-position/lib/index.js
|
|
24562
24564
|
/**
|
|
24563
24565
|
* @typedef {import('unist').Node} Node
|
|
24564
24566
|
* @typedef {import('unist').Point} Point
|
|
@@ -24644,7 +24646,7 @@ function lib_index(value) {
|
|
|
24644
24646
|
return value && typeof value === 'number' ? value : 1
|
|
24645
24647
|
}
|
|
24646
24648
|
|
|
24647
|
-
;//
|
|
24649
|
+
;// ./node_modules/mdast-util-from-markdown/lib/index.js
|
|
24648
24650
|
/**
|
|
24649
24651
|
* @typedef {import('mdast').Break} Break
|
|
24650
24652
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
@@ -25998,7 +26000,7 @@ function defaultOnError(left, right) {
|
|
|
25998
26000
|
}
|
|
25999
26001
|
}
|
|
26000
26002
|
|
|
26001
|
-
;//
|
|
26003
|
+
;// ./node_modules/remark-parse/lib/index.js
|
|
26002
26004
|
/**
|
|
26003
26005
|
* @typedef {import('mdast').Root} Root
|
|
26004
26006
|
* @typedef {import('mdast-util-from-markdown').Options} FromMarkdownOptions
|
|
@@ -26043,7 +26045,7 @@ function remarkParse(options) {
|
|
|
26043
26045
|
}
|
|
26044
26046
|
}
|
|
26045
26047
|
|
|
26046
|
-
;//
|
|
26048
|
+
;// ./node_modules/zwitch/index.js
|
|
26047
26049
|
/**
|
|
26048
26050
|
* @callback Handler
|
|
26049
26051
|
* Handle a value, with a certain ID field set to a certain value.
|
|
@@ -26163,7 +26165,7 @@ function zwitch(key, options) {
|
|
|
26163
26165
|
return one
|
|
26164
26166
|
}
|
|
26165
26167
|
|
|
26166
|
-
;//
|
|
26168
|
+
;// ./node_modules/mdast-util-to-markdown/lib/configure.js
|
|
26167
26169
|
/**
|
|
26168
26170
|
* @typedef {import('./types.js').Options} Options
|
|
26169
26171
|
* @typedef {import('./types.js').State} State
|
|
@@ -26245,7 +26247,7 @@ function map(left, right) {
|
|
|
26245
26247
|
}
|
|
26246
26248
|
}
|
|
26247
26249
|
|
|
26248
|
-
;//
|
|
26250
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/blockquote.js
|
|
26249
26251
|
/**
|
|
26250
26252
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
26251
26253
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26279,7 +26281,7 @@ function blockquote_map(line, _, blank) {
|
|
|
26279
26281
|
return '>' + (blank ? '' : ' ') + line
|
|
26280
26282
|
}
|
|
26281
26283
|
|
|
26282
|
-
;//
|
|
26284
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js
|
|
26283
26285
|
/**
|
|
26284
26286
|
* @typedef {import('../types.js').ConstructName} ConstructName
|
|
26285
26287
|
* @typedef {import('../types.js').Unsafe} Unsafe
|
|
@@ -26323,7 +26325,7 @@ function listInScope(stack, list, none) {
|
|
|
26323
26325
|
return false
|
|
26324
26326
|
}
|
|
26325
26327
|
|
|
26326
|
-
;//
|
|
26328
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/break.js
|
|
26327
26329
|
/**
|
|
26328
26330
|
* @typedef {import('mdast').Break} Break
|
|
26329
26331
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26357,7 +26359,7 @@ function hardBreak(_, _1, state, info) {
|
|
|
26357
26359
|
return '\\\n'
|
|
26358
26360
|
}
|
|
26359
26361
|
|
|
26360
|
-
;//
|
|
26362
|
+
;// ./node_modules/longest-streak/index.js
|
|
26361
26363
|
/**
|
|
26362
26364
|
* Get the count of the longest repeating streak of `substring` in `value`.
|
|
26363
26365
|
*
|
|
@@ -26395,7 +26397,7 @@ function longestStreak(value, substring) {
|
|
|
26395
26397
|
return max
|
|
26396
26398
|
}
|
|
26397
26399
|
|
|
26398
|
-
;//
|
|
26400
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js
|
|
26399
26401
|
/**
|
|
26400
26402
|
* @typedef {import('mdast').Code} Code
|
|
26401
26403
|
* @typedef {import('../types.js').State} State
|
|
@@ -26419,7 +26421,7 @@ function formatCodeAsIndented(node, state) {
|
|
|
26419
26421
|
)
|
|
26420
26422
|
}
|
|
26421
26423
|
|
|
26422
|
-
;//
|
|
26424
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-fence.js
|
|
26423
26425
|
/**
|
|
26424
26426
|
* @typedef {import('../types.js').Options} Options
|
|
26425
26427
|
* @typedef {import('../types.js').State} State
|
|
@@ -26443,7 +26445,7 @@ function checkFence(state) {
|
|
|
26443
26445
|
return marker
|
|
26444
26446
|
}
|
|
26445
26447
|
|
|
26446
|
-
;//
|
|
26448
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/code.js
|
|
26447
26449
|
/**
|
|
26448
26450
|
* @typedef {import('mdast').Code} Code
|
|
26449
26451
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26523,7 +26525,7 @@ function code_map(line, _, blank) {
|
|
|
26523
26525
|
return (blank ? '' : ' ') + line
|
|
26524
26526
|
}
|
|
26525
26527
|
|
|
26526
|
-
;//
|
|
26528
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-quote.js
|
|
26527
26529
|
/**
|
|
26528
26530
|
* @typedef {import('../types.js').Options} Options
|
|
26529
26531
|
* @typedef {import('../types.js').State} State
|
|
@@ -26547,7 +26549,7 @@ function checkQuote(state) {
|
|
|
26547
26549
|
return marker
|
|
26548
26550
|
}
|
|
26549
26551
|
|
|
26550
|
-
;//
|
|
26552
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/definition.js
|
|
26551
26553
|
/**
|
|
26552
26554
|
* @typedef {import('mdast').Definition} Definition
|
|
26553
26555
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26627,7 +26629,7 @@ function definition_definition(node, _, state, info) {
|
|
|
26627
26629
|
return value
|
|
26628
26630
|
}
|
|
26629
26631
|
|
|
26630
|
-
;//
|
|
26632
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js
|
|
26631
26633
|
/**
|
|
26632
26634
|
* @typedef {import('../types.js').Options} Options
|
|
26633
26635
|
* @typedef {import('../types.js').State} State
|
|
@@ -26651,7 +26653,7 @@ function checkEmphasis(state) {
|
|
|
26651
26653
|
return marker
|
|
26652
26654
|
}
|
|
26653
26655
|
|
|
26654
|
-
;//
|
|
26656
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/emphasis.js
|
|
26655
26657
|
/**
|
|
26656
26658
|
* @typedef {import('mdast').Emphasis} Emphasis
|
|
26657
26659
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -26701,7 +26703,7 @@ function emphasisPeek(_, _1, state) {
|
|
|
26701
26703
|
return state.options.emphasis || '*'
|
|
26702
26704
|
}
|
|
26703
26705
|
|
|
26704
|
-
;//
|
|
26706
|
+
;// ./node_modules/unist-util-is/lib/index.js
|
|
26705
26707
|
/**
|
|
26706
26708
|
* @typedef {import('unist').Node} Node
|
|
26707
26709
|
* @typedef {import('unist').Parent} Parent
|
|
@@ -26994,7 +26996,7 @@ function looksLikeANode(value) {
|
|
|
26994
26996
|
return value !== null && typeof value === 'object' && 'type' in value
|
|
26995
26997
|
}
|
|
26996
26998
|
|
|
26997
|
-
;//
|
|
26999
|
+
;// ./node_modules/unist-util-visit-parents/lib/color.node.js
|
|
26998
27000
|
/**
|
|
26999
27001
|
* @param {string} d
|
|
27000
27002
|
* @returns {string}
|
|
@@ -27003,7 +27005,7 @@ function color(d) {
|
|
|
27003
27005
|
return '\u001B[33m' + d + '\u001B[39m'
|
|
27004
27006
|
}
|
|
27005
27007
|
|
|
27006
|
-
;//
|
|
27008
|
+
;// ./node_modules/unist-util-visit-parents/lib/index.js
|
|
27007
27009
|
/**
|
|
27008
27010
|
* @typedef {import('unist').Node} UnistNode
|
|
27009
27011
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -27403,7 +27405,7 @@ function toResult(value) {
|
|
|
27403
27405
|
return value === null || value === undefined ? empty : [value]
|
|
27404
27406
|
}
|
|
27405
27407
|
|
|
27406
|
-
;//
|
|
27408
|
+
;// ./node_modules/unist-util-visit/lib/index.js
|
|
27407
27409
|
/**
|
|
27408
27410
|
* @typedef {import('unist').Node} UnistNode
|
|
27409
27411
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -27718,7 +27720,7 @@ function visit(tree, testOrVisitor, visitorOrReverse, maybeReverse) {
|
|
|
27718
27720
|
}
|
|
27719
27721
|
}
|
|
27720
27722
|
|
|
27721
|
-
;//
|
|
27723
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js
|
|
27722
27724
|
/**
|
|
27723
27725
|
* @typedef {import('mdast').Heading} Heading
|
|
27724
27726
|
* @typedef {import('../types.js').State} State
|
|
@@ -27754,7 +27756,7 @@ function formatHeadingAsSetext(node, state) {
|
|
|
27754
27756
|
)
|
|
27755
27757
|
}
|
|
27756
27758
|
|
|
27757
|
-
;//
|
|
27759
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/heading.js
|
|
27758
27760
|
/**
|
|
27759
27761
|
* @typedef {import('mdast').Heading} Heading
|
|
27760
27762
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -27836,7 +27838,7 @@ function heading(node, _, state, info) {
|
|
|
27836
27838
|
return value
|
|
27837
27839
|
}
|
|
27838
27840
|
|
|
27839
|
-
;//
|
|
27841
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/html.js
|
|
27840
27842
|
/**
|
|
27841
27843
|
* @typedef {import('mdast').Html} Html
|
|
27842
27844
|
*/
|
|
@@ -27858,7 +27860,7 @@ function htmlPeek() {
|
|
|
27858
27860
|
return '<'
|
|
27859
27861
|
}
|
|
27860
27862
|
|
|
27861
|
-
;//
|
|
27863
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/image.js
|
|
27862
27864
|
/**
|
|
27863
27865
|
* @typedef {import('mdast').Image} Image
|
|
27864
27866
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -27944,7 +27946,7 @@ function imagePeek() {
|
|
|
27944
27946
|
return '!'
|
|
27945
27947
|
}
|
|
27946
27948
|
|
|
27947
|
-
;//
|
|
27949
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/image-reference.js
|
|
27948
27950
|
/**
|
|
27949
27951
|
* @typedef {import('mdast').ImageReference} ImageReference
|
|
27950
27952
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28011,7 +28013,7 @@ function imageReferencePeek() {
|
|
|
28011
28013
|
return '!'
|
|
28012
28014
|
}
|
|
28013
28015
|
|
|
28014
|
-
;//
|
|
28016
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/inline-code.js
|
|
28015
28017
|
/**
|
|
28016
28018
|
* @typedef {import('mdast').InlineCode} InlineCode
|
|
28017
28019
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28090,7 +28092,7 @@ function inlineCodePeek() {
|
|
|
28090
28092
|
return '`'
|
|
28091
28093
|
}
|
|
28092
28094
|
|
|
28093
|
-
;//
|
|
28095
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js
|
|
28094
28096
|
/**
|
|
28095
28097
|
* @typedef {import('mdast').Link} Link
|
|
28096
28098
|
* @typedef {import('../types.js').State} State
|
|
@@ -28126,7 +28128,7 @@ function formatLinkAsAutolink(node, state) {
|
|
|
28126
28128
|
)
|
|
28127
28129
|
}
|
|
28128
28130
|
|
|
28129
|
-
;//
|
|
28131
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/link.js
|
|
28130
28132
|
/**
|
|
28131
28133
|
* @typedef {import('mdast').Link} Link
|
|
28132
28134
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28244,7 +28246,7 @@ function linkPeek(node, _, state) {
|
|
|
28244
28246
|
return formatLinkAsAutolink(node, state) ? '<' : '['
|
|
28245
28247
|
}
|
|
28246
28248
|
|
|
28247
|
-
;//
|
|
28249
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/link-reference.js
|
|
28248
28250
|
/**
|
|
28249
28251
|
* @typedef {import('mdast').LinkReference} LinkReference
|
|
28250
28252
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28311,7 +28313,7 @@ function linkReferencePeek() {
|
|
|
28311
28313
|
return '['
|
|
28312
28314
|
}
|
|
28313
28315
|
|
|
28314
|
-
;//
|
|
28316
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet.js
|
|
28315
28317
|
/**
|
|
28316
28318
|
* @typedef {import('../types.js').Options} Options
|
|
28317
28319
|
* @typedef {import('../types.js').State} State
|
|
@@ -28335,7 +28337,7 @@ function checkBullet(state) {
|
|
|
28335
28337
|
return marker
|
|
28336
28338
|
}
|
|
28337
28339
|
|
|
28338
|
-
;//
|
|
28340
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js
|
|
28339
28341
|
/**
|
|
28340
28342
|
* @typedef {import('../types.js').Options} Options
|
|
28341
28343
|
* @typedef {import('../types.js').State} State
|
|
@@ -28376,7 +28378,7 @@ function checkBulletOther(state) {
|
|
|
28376
28378
|
return bulletOther
|
|
28377
28379
|
}
|
|
28378
28380
|
|
|
28379
|
-
;//
|
|
28381
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js
|
|
28380
28382
|
/**
|
|
28381
28383
|
* @typedef {import('../types.js').Options} Options
|
|
28382
28384
|
* @typedef {import('../types.js').State} State
|
|
@@ -28400,7 +28402,7 @@ function checkBulletOrdered(state) {
|
|
|
28400
28402
|
return marker
|
|
28401
28403
|
}
|
|
28402
28404
|
|
|
28403
|
-
;//
|
|
28405
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule.js
|
|
28404
28406
|
/**
|
|
28405
28407
|
* @typedef {import('../types.js').Options} Options
|
|
28406
28408
|
* @typedef {import('../types.js').State} State
|
|
@@ -28424,7 +28426,7 @@ function checkRule(state) {
|
|
|
28424
28426
|
return marker
|
|
28425
28427
|
}
|
|
28426
28428
|
|
|
28427
|
-
;//
|
|
28429
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/list.js
|
|
28428
28430
|
/**
|
|
28429
28431
|
* @typedef {import('mdast').List} List
|
|
28430
28432
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28528,7 +28530,7 @@ function list_list(node, parent, state, info) {
|
|
|
28528
28530
|
return value
|
|
28529
28531
|
}
|
|
28530
28532
|
|
|
28531
|
-
;//
|
|
28533
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js
|
|
28532
28534
|
/**
|
|
28533
28535
|
* @typedef {import('../types.js').Options} Options
|
|
28534
28536
|
* @typedef {import('../types.js').State} State
|
|
@@ -28552,7 +28554,7 @@ function checkListItemIndent(state) {
|
|
|
28552
28554
|
return style
|
|
28553
28555
|
}
|
|
28554
28556
|
|
|
28555
|
-
;//
|
|
28557
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/list-item.js
|
|
28556
28558
|
/**
|
|
28557
28559
|
* @typedef {import('mdast').ListItem} ListItem
|
|
28558
28560
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28619,7 +28621,7 @@ function listItem(node, parent, state, info) {
|
|
|
28619
28621
|
}
|
|
28620
28622
|
}
|
|
28621
28623
|
|
|
28622
|
-
;//
|
|
28624
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/paragraph.js
|
|
28623
28625
|
/**
|
|
28624
28626
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
28625
28627
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -28643,7 +28645,7 @@ function paragraph(node, _, state, info) {
|
|
|
28643
28645
|
return value
|
|
28644
28646
|
}
|
|
28645
28647
|
|
|
28646
|
-
;//
|
|
28648
|
+
;// ./node_modules/mdast-util-phrasing/lib/index.js
|
|
28647
28649
|
/**
|
|
28648
28650
|
* @typedef {import('mdast').Html} Html
|
|
28649
28651
|
* @typedef {import('mdast').PhrasingContent} PhrasingContent
|
|
@@ -28690,7 +28692,7 @@ const phrasing =
|
|
|
28690
28692
|
])
|
|
28691
28693
|
)
|
|
28692
28694
|
|
|
28693
|
-
;//
|
|
28695
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/root.js
|
|
28694
28696
|
/**
|
|
28695
28697
|
* @typedef {import('mdast').Parents} Parents
|
|
28696
28698
|
* @typedef {import('mdast').Root} Root
|
|
@@ -28716,7 +28718,7 @@ function root(node, _, state, info) {
|
|
|
28716
28718
|
return fn.call(state, node, info)
|
|
28717
28719
|
}
|
|
28718
28720
|
|
|
28719
|
-
;//
|
|
28721
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-strong.js
|
|
28720
28722
|
/**
|
|
28721
28723
|
* @typedef {import('../types.js').Options} Options
|
|
28722
28724
|
* @typedef {import('../types.js').State} State
|
|
@@ -28740,7 +28742,7 @@ function checkStrong(state) {
|
|
|
28740
28742
|
return marker
|
|
28741
28743
|
}
|
|
28742
28744
|
|
|
28743
|
-
;//
|
|
28745
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/strong.js
|
|
28744
28746
|
/**
|
|
28745
28747
|
* @typedef {import('mdast').Parents} Parents
|
|
28746
28748
|
* @typedef {import('mdast').Strong} Strong
|
|
@@ -28790,7 +28792,7 @@ function strongPeek(_, _1, state) {
|
|
|
28790
28792
|
return state.options.strong || '*'
|
|
28791
28793
|
}
|
|
28792
28794
|
|
|
28793
|
-
;//
|
|
28795
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/text.js
|
|
28794
28796
|
/**
|
|
28795
28797
|
* @typedef {import('mdast').Parents} Parents
|
|
28796
28798
|
* @typedef {import('mdast').Text} Text
|
|
@@ -28809,7 +28811,7 @@ function handle_text_text(node, _, state, info) {
|
|
|
28809
28811
|
return state.safe(node.value, info)
|
|
28810
28812
|
}
|
|
28811
28813
|
|
|
28812
|
-
;//
|
|
28814
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js
|
|
28813
28815
|
/**
|
|
28814
28816
|
* @typedef {import('../types.js').Options} Options
|
|
28815
28817
|
* @typedef {import('../types.js').State} State
|
|
@@ -28833,7 +28835,7 @@ function checkRuleRepetition(state) {
|
|
|
28833
28835
|
return repetition
|
|
28834
28836
|
}
|
|
28835
28837
|
|
|
28836
|
-
;//
|
|
28838
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js
|
|
28837
28839
|
/**
|
|
28838
28840
|
* @typedef {import('mdast').Parents} Parents
|
|
28839
28841
|
* @typedef {import('mdast').ThematicBreak} ThematicBreak
|
|
@@ -28857,7 +28859,7 @@ function thematic_break_thematicBreak(_, _1, state) {
|
|
|
28857
28859
|
return state.options.ruleSpaces ? value.slice(0, -1) : value
|
|
28858
28860
|
}
|
|
28859
28861
|
|
|
28860
|
-
;//
|
|
28862
|
+
;// ./node_modules/mdast-util-to-markdown/lib/handle/index.js
|
|
28861
28863
|
|
|
28862
28864
|
|
|
28863
28865
|
|
|
@@ -28904,7 +28906,7 @@ const handle = {
|
|
|
28904
28906
|
thematicBreak: thematic_break_thematicBreak
|
|
28905
28907
|
}
|
|
28906
28908
|
|
|
28907
|
-
;//
|
|
28909
|
+
;// ./node_modules/mdast-util-to-markdown/lib/join.js
|
|
28908
28910
|
/**
|
|
28909
28911
|
* @typedef {import('./types.js').Join} Join
|
|
28910
28912
|
*/
|
|
@@ -28945,7 +28947,7 @@ function joinDefaults(left, right, parent, state) {
|
|
|
28945
28947
|
}
|
|
28946
28948
|
}
|
|
28947
28949
|
|
|
28948
|
-
;//
|
|
28950
|
+
;// ./node_modules/mdast-util-to-markdown/lib/unsafe.js
|
|
28949
28951
|
/**
|
|
28950
28952
|
* @typedef {import('./types.js').ConstructName} ConstructName
|
|
28951
28953
|
* @typedef {import('./types.js').Unsafe} Unsafe
|
|
@@ -29094,7 +29096,7 @@ const unsafe = [
|
|
|
29094
29096
|
{atBreak: true, character: '~'}
|
|
29095
29097
|
]
|
|
29096
29098
|
|
|
29097
|
-
;//
|
|
29099
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/association.js
|
|
29098
29100
|
/**
|
|
29099
29101
|
* @typedef {import('../types.js').AssociationId} AssociationId
|
|
29100
29102
|
*/
|
|
@@ -29129,7 +29131,7 @@ function association(node) {
|
|
|
29129
29131
|
return decodeString(node.identifier)
|
|
29130
29132
|
}
|
|
29131
29133
|
|
|
29132
|
-
;//
|
|
29134
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js
|
|
29133
29135
|
/**
|
|
29134
29136
|
* @typedef {import('../types.js').CompilePattern} CompilePattern
|
|
29135
29137
|
*/
|
|
@@ -29155,7 +29157,7 @@ function compilePattern(pattern) {
|
|
|
29155
29157
|
return pattern._compiled
|
|
29156
29158
|
}
|
|
29157
29159
|
|
|
29158
|
-
;//
|
|
29160
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js
|
|
29159
29161
|
/**
|
|
29160
29162
|
* @typedef {import('../types.js').Handle} Handle
|
|
29161
29163
|
* @typedef {import('../types.js').Info} Info
|
|
@@ -29253,7 +29255,7 @@ function containerPhrasing(parent, state, info) {
|
|
|
29253
29255
|
return results.join('')
|
|
29254
29256
|
}
|
|
29255
29257
|
|
|
29256
|
-
;//
|
|
29258
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/container-flow.js
|
|
29257
29259
|
/**
|
|
29258
29260
|
* @typedef {import('../types.js').FlowParents} FlowParents
|
|
29259
29261
|
* @typedef {import('../types.js').FlowChildren} FlowChildren
|
|
@@ -29341,7 +29343,7 @@ function between(left, right, parent, state) {
|
|
|
29341
29343
|
return '\n\n'
|
|
29342
29344
|
}
|
|
29343
29345
|
|
|
29344
|
-
;//
|
|
29346
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/indent-lines.js
|
|
29345
29347
|
/**
|
|
29346
29348
|
* @typedef {import('../types.js').IndentLines} IndentLines
|
|
29347
29349
|
*/
|
|
@@ -29378,7 +29380,7 @@ function indentLines(value, map) {
|
|
|
29378
29380
|
}
|
|
29379
29381
|
}
|
|
29380
29382
|
|
|
29381
|
-
;//
|
|
29383
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/safe.js
|
|
29382
29384
|
/**
|
|
29383
29385
|
* @typedef {import('../types.js').SafeConfig} SafeConfig
|
|
29384
29386
|
* @typedef {import('../types.js').State} State
|
|
@@ -29556,7 +29558,7 @@ function escapeBackslashes(value, after) {
|
|
|
29556
29558
|
return results.join('')
|
|
29557
29559
|
}
|
|
29558
29560
|
|
|
29559
|
-
;//
|
|
29561
|
+
;// ./node_modules/mdast-util-to-markdown/lib/util/track.js
|
|
29560
29562
|
/**
|
|
29561
29563
|
* @typedef {import('../types.js').CreateTracker} CreateTracker
|
|
29562
29564
|
* @typedef {import('../types.js').TrackCurrent} TrackCurrent
|
|
@@ -29616,7 +29618,7 @@ function track(config) {
|
|
|
29616
29618
|
}
|
|
29617
29619
|
}
|
|
29618
29620
|
|
|
29619
|
-
;//
|
|
29621
|
+
;// ./node_modules/mdast-util-to-markdown/lib/index.js
|
|
29620
29622
|
/**
|
|
29621
29623
|
* @typedef {import('mdast').Nodes} Nodes
|
|
29622
29624
|
* @typedef {import('./types.js').Enter} Enter
|
|
@@ -29811,7 +29813,7 @@ function safeBound(value, config) {
|
|
|
29811
29813
|
return safe(this, value, config)
|
|
29812
29814
|
}
|
|
29813
29815
|
|
|
29814
|
-
;//
|
|
29816
|
+
;// ./node_modules/remark-stringify/lib/index.js
|
|
29815
29817
|
/**
|
|
29816
29818
|
* @typedef {import('mdast').Root} Root
|
|
29817
29819
|
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownOptions
|
|
@@ -29855,7 +29857,7 @@ function remarkStringify(options) {
|
|
|
29855
29857
|
}
|
|
29856
29858
|
}
|
|
29857
29859
|
|
|
29858
|
-
;//
|
|
29860
|
+
;// ./node_modules/bail/index.js
|
|
29859
29861
|
/**
|
|
29860
29862
|
* Throw a given error.
|
|
29861
29863
|
*
|
|
@@ -29872,7 +29874,7 @@ function bail(error) {
|
|
|
29872
29874
|
// EXTERNAL MODULE: ./node_modules/extend/index.js
|
|
29873
29875
|
var extend = __webpack_require__(2849);
|
|
29874
29876
|
var extend_default = /*#__PURE__*/__webpack_require__.n(extend);
|
|
29875
|
-
;//
|
|
29877
|
+
;// ./node_modules/devlop/lib/default.js
|
|
29876
29878
|
function deprecate(fn) {
|
|
29877
29879
|
return fn
|
|
29878
29880
|
}
|
|
@@ -29883,7 +29885,7 @@ function default_ok() {}
|
|
|
29883
29885
|
|
|
29884
29886
|
function unreachable() {}
|
|
29885
29887
|
|
|
29886
|
-
;//
|
|
29888
|
+
;// ./node_modules/unified/node_modules/is-plain-obj/index.js
|
|
29887
29889
|
function isPlainObject(value) {
|
|
29888
29890
|
if (typeof value !== 'object' || value === null) {
|
|
29889
29891
|
return false;
|
|
@@ -29893,7 +29895,7 @@ function isPlainObject(value) {
|
|
|
29893
29895
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
29894
29896
|
}
|
|
29895
29897
|
|
|
29896
|
-
;//
|
|
29898
|
+
;// ./node_modules/trough/lib/index.js
|
|
29897
29899
|
// To do: remove `void`s
|
|
29898
29900
|
// To do: remove `null` from output of our APIs, allow it as user APIs.
|
|
29899
29901
|
|
|
@@ -30101,7 +30103,7 @@ function wrap(middleware, callback) {
|
|
|
30101
30103
|
}
|
|
30102
30104
|
}
|
|
30103
30105
|
|
|
30104
|
-
;//
|
|
30106
|
+
;// ./node_modules/vfile-message/lib/index.js
|
|
30105
30107
|
/**
|
|
30106
30108
|
* @typedef {import('unist').Node} Node
|
|
30107
30109
|
* @typedef {import('unist').Point} Point
|
|
@@ -30421,13 +30423,13 @@ VFileMessage.prototype.place = undefined
|
|
|
30421
30423
|
VFileMessage.prototype.ruleId = undefined
|
|
30422
30424
|
VFileMessage.prototype.source = undefined
|
|
30423
30425
|
|
|
30424
|
-
;//
|
|
30426
|
+
;// external "node:path"
|
|
30425
30427
|
const external_node_path_namespaceObject = require("node:path");
|
|
30426
30428
|
var external_node_path_default = /*#__PURE__*/__webpack_require__.n(external_node_path_namespaceObject);
|
|
30427
|
-
;//
|
|
30429
|
+
;// external "node:process"
|
|
30428
30430
|
const external_node_process_namespaceObject = require("node:process");
|
|
30429
30431
|
var external_node_process_default = /*#__PURE__*/__webpack_require__.n(external_node_process_namespaceObject);
|
|
30430
|
-
;//
|
|
30432
|
+
;// ./node_modules/vfile/lib/minurl.shared.js
|
|
30431
30433
|
/**
|
|
30432
30434
|
* Checks if a value has the shape of a WHATWG URL object.
|
|
30433
30435
|
*
|
|
@@ -30460,9 +30462,9 @@ function isUrl(fileUrlOrPath) {
|
|
|
30460
30462
|
)
|
|
30461
30463
|
}
|
|
30462
30464
|
|
|
30463
|
-
;//
|
|
30465
|
+
;// external "node:url"
|
|
30464
30466
|
const external_node_url_namespaceObject = require("node:url");
|
|
30465
|
-
;//
|
|
30467
|
+
;// ./node_modules/vfile/lib/index.js
|
|
30466
30468
|
/**
|
|
30467
30469
|
* @typedef {import('unist').Node} Node
|
|
30468
30470
|
* @typedef {import('unist').Point} Point
|
|
@@ -31167,7 +31169,7 @@ function isUint8Array(value) {
|
|
|
31167
31169
|
)
|
|
31168
31170
|
}
|
|
31169
31171
|
|
|
31170
|
-
;//
|
|
31172
|
+
;// ./node_modules/unified/lib/callable-instance.js
|
|
31171
31173
|
const CallableInstance =
|
|
31172
31174
|
/**
|
|
31173
31175
|
* @type {new <Parameters extends Array<unknown>, Result>(property: string | symbol) => (...parameters: Parameters) => Result}
|
|
@@ -31208,7 +31210,7 @@ const CallableInstance =
|
|
|
31208
31210
|
)
|
|
31209
31211
|
)
|
|
31210
31212
|
|
|
31211
|
-
;//
|
|
31213
|
+
;// ./node_modules/unified/lib/index.js
|
|
31212
31214
|
/**
|
|
31213
31215
|
* @typedef {import('trough').Pipeline} Pipeline
|
|
31214
31216
|
*
|
|
@@ -32533,7 +32535,7 @@ function lib_isUint8Array(value) {
|
|
|
32533
32535
|
)
|
|
32534
32536
|
}
|
|
32535
32537
|
|
|
32536
|
-
;//
|
|
32538
|
+
;// ./node_modules/remark/index.js
|
|
32537
32539
|
// Note: types exposed from `index.d.ts`
|
|
32538
32540
|
|
|
32539
32541
|
|
|
@@ -32545,7 +32547,7 @@ function lib_isUint8Array(value) {
|
|
|
32545
32547
|
*/
|
|
32546
32548
|
const remark = unified().use(remarkParse).use(remarkStringify).freeze()
|
|
32547
32549
|
|
|
32548
|
-
;//
|
|
32550
|
+
;// ./node_modules/mdast-util-mdx-expression/lib/index.js
|
|
32549
32551
|
/**
|
|
32550
32552
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
32551
32553
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -32658,7 +32660,7 @@ function handleMdxExpression(node) {
|
|
|
32658
32660
|
return '{' + value + '}'
|
|
32659
32661
|
}
|
|
32660
32662
|
|
|
32661
|
-
;//
|
|
32663
|
+
;// ./node_modules/ccount/index.js
|
|
32662
32664
|
/**
|
|
32663
32665
|
* Count how often a character (or substring) is used in a string.
|
|
32664
32666
|
*
|
|
@@ -32687,7 +32689,7 @@ function ccount(value, character) {
|
|
|
32687
32689
|
return count
|
|
32688
32690
|
}
|
|
32689
32691
|
|
|
32690
|
-
;//
|
|
32692
|
+
;// ./node_modules/character-entities-legacy/index.js
|
|
32691
32693
|
/**
|
|
32692
32694
|
* List of legacy HTML named character references that don’t need a trailing semicolon.
|
|
32693
32695
|
*
|
|
@@ -32802,7 +32804,7 @@ const characterEntitiesLegacy = [
|
|
|
32802
32804
|
'yuml'
|
|
32803
32805
|
]
|
|
32804
32806
|
|
|
32805
|
-
;//
|
|
32807
|
+
;// ./node_modules/character-reference-invalid/index.js
|
|
32806
32808
|
/**
|
|
32807
32809
|
* Map of invalid numeric character references to their replacements, according to HTML.
|
|
32808
32810
|
*
|
|
@@ -32839,7 +32841,7 @@ const characterReferenceInvalid = {
|
|
|
32839
32841
|
159: 'Ÿ'
|
|
32840
32842
|
}
|
|
32841
32843
|
|
|
32842
|
-
;//
|
|
32844
|
+
;// ./node_modules/is-decimal/index.js
|
|
32843
32845
|
/**
|
|
32844
32846
|
* Check if the given character code, or the character code at the first
|
|
32845
32847
|
* character, is decimal.
|
|
@@ -32854,7 +32856,7 @@ function isDecimal(character) {
|
|
|
32854
32856
|
return code >= 48 && code <= 57 /* 0-9 */
|
|
32855
32857
|
}
|
|
32856
32858
|
|
|
32857
|
-
;//
|
|
32859
|
+
;// ./node_modules/is-hexadecimal/index.js
|
|
32858
32860
|
/**
|
|
32859
32861
|
* Check if the given character code, or the character code at the first
|
|
32860
32862
|
* character, is hexadecimal.
|
|
@@ -32873,7 +32875,7 @@ function isHexadecimal(character) {
|
|
|
32873
32875
|
)
|
|
32874
32876
|
}
|
|
32875
32877
|
|
|
32876
|
-
;//
|
|
32878
|
+
;// ./node_modules/is-alphabetical/index.js
|
|
32877
32879
|
/**
|
|
32878
32880
|
* Check if the given character code, or the character code at the first
|
|
32879
32881
|
* character, is alphabetical.
|
|
@@ -32891,7 +32893,7 @@ function isAlphabetical(character) {
|
|
|
32891
32893
|
)
|
|
32892
32894
|
}
|
|
32893
32895
|
|
|
32894
|
-
;//
|
|
32896
|
+
;// ./node_modules/is-alphanumerical/index.js
|
|
32895
32897
|
|
|
32896
32898
|
|
|
32897
32899
|
|
|
@@ -32906,7 +32908,7 @@ function isAlphanumerical(character) {
|
|
|
32906
32908
|
return isAlphabetical(character) || isDecimal(character)
|
|
32907
32909
|
}
|
|
32908
32910
|
|
|
32909
|
-
;//
|
|
32911
|
+
;// ./node_modules/parse-entities/lib/index.js
|
|
32910
32912
|
/**
|
|
32911
32913
|
* @typedef {import('unist').Point} Point
|
|
32912
32914
|
* @typedef {import('unist').Position} Position
|
|
@@ -33314,7 +33316,7 @@ function disallowed(code) {
|
|
|
33314
33316
|
)
|
|
33315
33317
|
}
|
|
33316
33318
|
|
|
33317
|
-
;//
|
|
33319
|
+
;// ./node_modules/stringify-entities/lib/core.js
|
|
33318
33320
|
/**
|
|
33319
33321
|
* @typedef CoreOptions
|
|
33320
33322
|
* @property {ReadonlyArray<string>} [subset=[]]
|
|
@@ -33433,7 +33435,7 @@ function charactersToExpression(subset) {
|
|
|
33433
33435
|
return new RegExp('(?:' + groups.join('|') + ')', 'g')
|
|
33434
33436
|
}
|
|
33435
33437
|
|
|
33436
|
-
;//
|
|
33438
|
+
;// ./node_modules/stringify-entities/lib/util/format-basic.js
|
|
33437
33439
|
/**
|
|
33438
33440
|
* The smallest way to encode a character.
|
|
33439
33441
|
*
|
|
@@ -33444,7 +33446,7 @@ function formatBasic(code) {
|
|
|
33444
33446
|
return '&#x' + code.toString(16).toUpperCase() + ';'
|
|
33445
33447
|
}
|
|
33446
33448
|
|
|
33447
|
-
;//
|
|
33449
|
+
;// ./node_modules/stringify-entities/lib/index.js
|
|
33448
33450
|
/**
|
|
33449
33451
|
* @typedef {import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions} Options
|
|
33450
33452
|
* @typedef {import('./core.js').CoreOptions} LightOptions
|
|
@@ -33482,7 +33484,7 @@ function stringifyEntitiesLight(value, options) {
|
|
|
33482
33484
|
return core_core(value, Object.assign({format: formatBasic}, options))
|
|
33483
33485
|
}
|
|
33484
33486
|
|
|
33485
|
-
;//
|
|
33487
|
+
;// ./node_modules/mdast-util-mdx-jsx/lib/index.js
|
|
33486
33488
|
/**
|
|
33487
33489
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
33488
33490
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -34282,7 +34284,7 @@ function peekElement() {
|
|
|
34282
34284
|
return '<'
|
|
34283
34285
|
}
|
|
34284
34286
|
|
|
34285
|
-
;//
|
|
34287
|
+
;// ./node_modules/mdast-util-mdxjs-esm/lib/index.js
|
|
34286
34288
|
/**
|
|
34287
34289
|
* @typedef {import('mdast-util-from-markdown').CompileContext} CompileContext
|
|
34288
34290
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
@@ -34371,7 +34373,7 @@ function handleMdxjsEsm(node) {
|
|
|
34371
34373
|
return node.value || ''
|
|
34372
34374
|
}
|
|
34373
34375
|
|
|
34374
|
-
;//
|
|
34376
|
+
;// ./node_modules/mdast-util-mdx/lib/index.js
|
|
34375
34377
|
/**
|
|
34376
34378
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
34377
34379
|
* @typedef {import('mdast-util-mdx-jsx').ToMarkdownOptions} ToMarkdownOptions
|
|
@@ -34421,7 +34423,7 @@ function mdxToMarkdown(options) {
|
|
|
34421
34423
|
}
|
|
34422
34424
|
}
|
|
34423
34425
|
|
|
34424
|
-
;//
|
|
34426
|
+
;// ./node_modules/acorn/dist/acorn.mjs
|
|
34425
34427
|
// This file was generated. Do not modify manually!
|
|
34426
34428
|
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];
|
|
34427
34429
|
|
|
@@ -40462,7 +40464,7 @@ function tokenizer(input, options) {
|
|
|
40462
40464
|
// EXTERNAL MODULE: ./node_modules/acorn-jsx/index.js
|
|
40463
40465
|
var acorn_jsx = __webpack_require__(9214);
|
|
40464
40466
|
var acorn_jsx_default = /*#__PURE__*/__webpack_require__.n(acorn_jsx);
|
|
40465
|
-
;//
|
|
40467
|
+
;// ./node_modules/estree-util-visit/lib/color.node.js
|
|
40466
40468
|
/**
|
|
40467
40469
|
* @param {string} d
|
|
40468
40470
|
* @returns {string}
|
|
@@ -40471,7 +40473,7 @@ function color_node_color(d) {
|
|
|
40471
40473
|
return '\u001B[33m' + d + '\u001B[39m'
|
|
40472
40474
|
}
|
|
40473
40475
|
|
|
40474
|
-
;//
|
|
40476
|
+
;// ./node_modules/estree-util-visit/lib/index.js
|
|
40475
40477
|
/**
|
|
40476
40478
|
* @typedef {import('estree-jsx').Node} Node
|
|
40477
40479
|
*/
|
|
@@ -40702,7 +40704,7 @@ function nodelike(value) {
|
|
|
40702
40704
|
)
|
|
40703
40705
|
}
|
|
40704
40706
|
|
|
40705
|
-
;//
|
|
40707
|
+
;// ./node_modules/micromark-util-events-to-acorn/index.js
|
|
40706
40708
|
/**
|
|
40707
40709
|
* @typedef {import('acorn').Comment} Comment
|
|
40708
40710
|
* @typedef {import('acorn').Node} AcornNode
|
|
@@ -41122,7 +41124,7 @@ function micromark_util_events_to_acorn_serializeChunks(chunks) {
|
|
|
41122
41124
|
}
|
|
41123
41125
|
return result.join('');
|
|
41124
41126
|
}
|
|
41125
|
-
;//
|
|
41127
|
+
;// ./node_modules/unist-util-position-from-estree/lib/index.js
|
|
41126
41128
|
/**
|
|
41127
41129
|
* @typedef {import('unist').Point} UnistPoint
|
|
41128
41130
|
* @typedef {import('unist').Position} UnistPosition
|
|
@@ -41201,7 +41203,7 @@ function numberOrUndefined(value) {
|
|
|
41201
41203
|
return typeof value === 'number' && value > -1 ? value : undefined
|
|
41202
41204
|
}
|
|
41203
41205
|
|
|
41204
|
-
;//
|
|
41206
|
+
;// ./node_modules/micromark-factory-mdx-expression/index.js
|
|
41205
41207
|
/**
|
|
41206
41208
|
* @typedef {import('estree').Program} Program
|
|
41207
41209
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
@@ -41583,7 +41585,7 @@ function mdxExpressionParse(
|
|
|
41583
41585
|
}
|
|
41584
41586
|
}
|
|
41585
41587
|
|
|
41586
|
-
;//
|
|
41588
|
+
;// ./node_modules/micromark-extension-mdx-expression/lib/syntax.js
|
|
41587
41589
|
/**
|
|
41588
41590
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
41589
41591
|
* @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
|
|
@@ -41811,7 +41813,7 @@ function mdxExpression(options) {
|
|
|
41811
41813
|
}
|
|
41812
41814
|
}
|
|
41813
41815
|
}
|
|
41814
|
-
;//
|
|
41816
|
+
;// ./node_modules/estree-util-is-identifier-name/lib/index.js
|
|
41815
41817
|
/**
|
|
41816
41818
|
* @typedef Options
|
|
41817
41819
|
* Configuration.
|
|
@@ -41874,7 +41876,7 @@ function lib_name(name, options) {
|
|
|
41874
41876
|
return re.test(name)
|
|
41875
41877
|
}
|
|
41876
41878
|
|
|
41877
|
-
;//
|
|
41879
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/factory-tag.js
|
|
41878
41880
|
/**
|
|
41879
41881
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
41880
41882
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -42699,7 +42701,7 @@ function factoryTag(effects, ok, nok, acorn, acornOptions, addResult, allowLazy,
|
|
|
42699
42701
|
function serializeCharCode(code) {
|
|
42700
42702
|
return 'U+' + code.toString(16).toUpperCase().padStart(4, '0');
|
|
42701
42703
|
}
|
|
42702
|
-
;//
|
|
42704
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-text.js
|
|
42703
42705
|
/**
|
|
42704
42706
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
42705
42707
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -42750,7 +42752,7 @@ function jsxText(acorn, options) {
|
|
|
42750
42752
|
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');
|
|
42751
42753
|
}
|
|
42752
42754
|
}
|
|
42753
|
-
;//
|
|
42755
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/jsx-flow.js
|
|
42754
42756
|
/**
|
|
42755
42757
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
42756
42758
|
* @typedef {import('micromark-factory-mdx-expression').AcornOptions} AcornOptions
|
|
@@ -42876,7 +42878,7 @@ function jsxFlow(acorn, options) {
|
|
|
42876
42878
|
}
|
|
42877
42879
|
}
|
|
42878
42880
|
}
|
|
42879
|
-
;//
|
|
42881
|
+
;// ./node_modules/micromark-extension-mdx-jsx/lib/syntax.js
|
|
42880
42882
|
/**
|
|
42881
42883
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
42882
42884
|
* @typedef {import('micromark-factory-mdx-expression').Acorn} Acorn
|
|
@@ -42941,7 +42943,7 @@ function mdxJsx(options) {
|
|
|
42941
42943
|
}
|
|
42942
42944
|
};
|
|
42943
42945
|
}
|
|
42944
|
-
;//
|
|
42946
|
+
;// ./node_modules/micromark-extension-mdx-md/index.js
|
|
42945
42947
|
/**
|
|
42946
42948
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
42947
42949
|
*/
|
|
@@ -42960,7 +42962,7 @@ function mdxMd() {
|
|
|
42960
42962
|
}
|
|
42961
42963
|
}
|
|
42962
42964
|
|
|
42963
|
-
;//
|
|
42965
|
+
;// ./node_modules/micromark-extension-mdxjs-esm/lib/syntax.js
|
|
42964
42966
|
/**
|
|
42965
42967
|
* @typedef {import('micromark-util-events-to-acorn').Acorn} Acorn
|
|
42966
42968
|
* @typedef {import('micromark-util-events-to-acorn').AcornOptions} AcornOptions
|
|
@@ -43228,7 +43230,7 @@ function tokenizeNextBlank(effects, ok, nok) {
|
|
|
43228
43230
|
return effects.attempt(blankLine, ok, nok);
|
|
43229
43231
|
}
|
|
43230
43232
|
}
|
|
43231
|
-
;//
|
|
43233
|
+
;// ./node_modules/micromark-extension-mdxjs/index.js
|
|
43232
43234
|
/**
|
|
43233
43235
|
* @typedef {import('micromark-extension-mdx-expression').Options} Options
|
|
43234
43236
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -43269,7 +43271,7 @@ function mdxjs(options) {
|
|
|
43269
43271
|
])
|
|
43270
43272
|
}
|
|
43271
43273
|
|
|
43272
|
-
;//
|
|
43274
|
+
;// ./node_modules/remark-mdx/lib/index.js
|
|
43273
43275
|
/**
|
|
43274
43276
|
* @typedef {import('mdast-util-mdx').ToMarkdownOptions} ToMarkdownOptions
|
|
43275
43277
|
* @typedef {import('micromark-extension-mdxjs').Options} MicromarkOptions
|
|
@@ -43318,7 +43320,7 @@ function remarkMdx(options) {
|
|
|
43318
43320
|
// EXTERNAL MODULE: ./node_modules/format/format.js
|
|
43319
43321
|
var format_format = __webpack_require__(6311);
|
|
43320
43322
|
var format_default = /*#__PURE__*/__webpack_require__.n(format_format);
|
|
43321
|
-
;//
|
|
43323
|
+
;// ./node_modules/fault/index.js
|
|
43322
43324
|
// @ts-expect-error
|
|
43323
43325
|
|
|
43324
43326
|
|
|
@@ -43361,7 +43363,7 @@ function create(Constructor) {
|
|
|
43361
43363
|
}
|
|
43362
43364
|
}
|
|
43363
43365
|
|
|
43364
|
-
;//
|
|
43366
|
+
;// ./node_modules/micromark-extension-frontmatter/lib/to-matters.js
|
|
43365
43367
|
/**
|
|
43366
43368
|
* @typedef {'toml' | 'yaml'} Preset
|
|
43367
43369
|
* Known name of a frontmatter style.
|
|
@@ -43487,7 +43489,7 @@ function matter(option) {
|
|
|
43487
43489
|
return result
|
|
43488
43490
|
}
|
|
43489
43491
|
|
|
43490
|
-
;//
|
|
43492
|
+
;// ./node_modules/mdast-util-frontmatter/node_modules/escape-string-regexp/index.js
|
|
43491
43493
|
function escapeStringRegexp(string) {
|
|
43492
43494
|
if (typeof string !== 'string') {
|
|
43493
43495
|
throw new TypeError('Expected a string');
|
|
@@ -43500,7 +43502,7 @@ function escapeStringRegexp(string) {
|
|
|
43500
43502
|
.replace(/-/g, '\\x2d');
|
|
43501
43503
|
}
|
|
43502
43504
|
|
|
43503
|
-
;//
|
|
43505
|
+
;// ./node_modules/mdast-util-frontmatter/lib/index.js
|
|
43504
43506
|
/**
|
|
43505
43507
|
* @typedef {import('mdast').Literal} Literal
|
|
43506
43508
|
*
|
|
@@ -43678,7 +43680,7 @@ function pick(schema, prop) {
|
|
|
43678
43680
|
return typeof schema === 'string' ? schema : schema[prop]
|
|
43679
43681
|
}
|
|
43680
43682
|
|
|
43681
|
-
;//
|
|
43683
|
+
;// ./node_modules/micromark-extension-frontmatter/lib/syntax.js
|
|
43682
43684
|
/**
|
|
43683
43685
|
* @typedef {import('micromark-util-types').Construct} Construct
|
|
43684
43686
|
* @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
|
|
@@ -44074,7 +44076,7 @@ function syntax_pick(schema, prop) {
|
|
|
44074
44076
|
return typeof schema === 'string' ? schema : schema[prop]
|
|
44075
44077
|
}
|
|
44076
44078
|
|
|
44077
|
-
;//
|
|
44079
|
+
;// ./node_modules/remark-frontmatter/lib/index.js
|
|
44078
44080
|
/// <reference types="remark-parse" />
|
|
44079
44081
|
/// <reference types="remark-stringify" />
|
|
44080
44082
|
|
|
@@ -44121,7 +44123,7 @@ function remarkFrontmatter(options) {
|
|
|
44121
44123
|
toMarkdownExtensions.push(frontmatterToMarkdown(settings))
|
|
44122
44124
|
}
|
|
44123
44125
|
|
|
44124
|
-
;//
|
|
44126
|
+
;// ./node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js
|
|
44125
44127
|
function escape_string_regexp_escapeStringRegexp(string) {
|
|
44126
44128
|
if (typeof string !== 'string') {
|
|
44127
44129
|
throw new TypeError('Expected a string');
|
|
@@ -44134,7 +44136,7 @@ function escape_string_regexp_escapeStringRegexp(string) {
|
|
|
44134
44136
|
.replace(/-/g, '\\x2d');
|
|
44135
44137
|
}
|
|
44136
44138
|
|
|
44137
|
-
;//
|
|
44139
|
+
;// ./node_modules/mdast-util-find-and-replace/lib/index.js
|
|
44138
44140
|
/**
|
|
44139
44141
|
* @typedef {import('mdast').Nodes} Nodes
|
|
44140
44142
|
* @typedef {import('mdast').Parents} Parents
|
|
@@ -44402,7 +44404,7 @@ function toFunction(replace) {
|
|
|
44402
44404
|
}
|
|
44403
44405
|
}
|
|
44404
44406
|
|
|
44405
|
-
;//
|
|
44407
|
+
;// ./node_modules/mdast-util-gfm-autolink-literal/lib/index.js
|
|
44406
44408
|
/**
|
|
44407
44409
|
* @typedef {import('mdast').Link} Link
|
|
44408
44410
|
* @typedef {import('mdast').PhrasingContent} PhrasingContent
|
|
@@ -44692,7 +44694,7 @@ function lib_previous(match, email) {
|
|
|
44692
44694
|
)
|
|
44693
44695
|
}
|
|
44694
44696
|
|
|
44695
|
-
;//
|
|
44697
|
+
;// ./node_modules/mdast-util-gfm-footnote/lib/index.js
|
|
44696
44698
|
/**
|
|
44697
44699
|
* @typedef {import('mdast').FootnoteDefinition} FootnoteDefinition
|
|
44698
44700
|
* @typedef {import('mdast').FootnoteReference} FootnoteReference
|
|
@@ -44892,7 +44894,7 @@ function lib_map(line, index, blank) {
|
|
|
44892
44894
|
return (blank ? '' : ' ') + line
|
|
44893
44895
|
}
|
|
44894
44896
|
|
|
44895
|
-
;//
|
|
44897
|
+
;// ./node_modules/mdast-util-gfm-strikethrough/lib/index.js
|
|
44896
44898
|
/**
|
|
44897
44899
|
* @typedef {import('mdast').Delete} Delete
|
|
44898
44900
|
*
|
|
@@ -45000,7 +45002,7 @@ function peekDelete() {
|
|
|
45000
45002
|
return '~'
|
|
45001
45003
|
}
|
|
45002
45004
|
|
|
45003
|
-
;//
|
|
45005
|
+
;// ./node_modules/markdown-table/index.js
|
|
45004
45006
|
/**
|
|
45005
45007
|
* @typedef Options
|
|
45006
45008
|
* Configuration (optional).
|
|
@@ -45382,7 +45384,7 @@ function toAlignment(value) {
|
|
|
45382
45384
|
: 0
|
|
45383
45385
|
}
|
|
45384
45386
|
|
|
45385
|
-
;//
|
|
45387
|
+
;// ./node_modules/mdast-util-gfm-table/lib/index.js
|
|
45386
45388
|
/**
|
|
45387
45389
|
* @typedef {import('mdast').InlineCode} InlineCode
|
|
45388
45390
|
* @typedef {import('mdast').Table} Table
|
|
@@ -45684,7 +45686,7 @@ function gfmTableToMarkdown(options) {
|
|
|
45684
45686
|
}
|
|
45685
45687
|
}
|
|
45686
45688
|
|
|
45687
|
-
;//
|
|
45689
|
+
;// ./node_modules/mdast-util-gfm-task-list-item/lib/index.js
|
|
45688
45690
|
/**
|
|
45689
45691
|
* @typedef {import('mdast').ListItem} ListItem
|
|
45690
45692
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
@@ -45827,7 +45829,7 @@ function listItemWithTaskListItem(node, parent, state, info) {
|
|
|
45827
45829
|
}
|
|
45828
45830
|
}
|
|
45829
45831
|
|
|
45830
|
-
;//
|
|
45832
|
+
;// ./node_modules/mdast-util-gfm/lib/index.js
|
|
45831
45833
|
/**
|
|
45832
45834
|
* @typedef {import('mdast-util-from-markdown').Extension} FromMarkdownExtension
|
|
45833
45835
|
* @typedef {import('mdast-util-to-markdown').Options} ToMarkdownExtension
|
|
@@ -45884,7 +45886,7 @@ function gfmToMarkdown(options) {
|
|
|
45884
45886
|
}
|
|
45885
45887
|
}
|
|
45886
45888
|
|
|
45887
|
-
;//
|
|
45889
|
+
;// ./node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js
|
|
45888
45890
|
/**
|
|
45889
45891
|
* @typedef {import('micromark-util-types').Code} Code
|
|
45890
45892
|
* @typedef {import('micromark-util-types').ConstructRecord} ConstructRecord
|
|
@@ -46836,7 +46838,7 @@ function previousUnbalanced(events) {
|
|
|
46836
46838
|
return result
|
|
46837
46839
|
}
|
|
46838
46840
|
|
|
46839
|
-
;//
|
|
46841
|
+
;// ./node_modules/micromark-extension-gfm-footnote/lib/syntax.js
|
|
46840
46842
|
/**
|
|
46841
46843
|
* @typedef {import('micromark-util-types').Event} Event
|
|
46842
46844
|
* @typedef {import('micromark-util-types').Exiter} Exiter
|
|
@@ -47367,7 +47369,7 @@ function syntax_tokenizeIndent(effects, ok, nok) {
|
|
|
47367
47369
|
}
|
|
47368
47370
|
}
|
|
47369
47371
|
|
|
47370
|
-
;//
|
|
47372
|
+
;// ./node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js
|
|
47371
47373
|
/**
|
|
47372
47374
|
* @typedef {import('micromark-util-types').Event} Event
|
|
47373
47375
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -47550,7 +47552,7 @@ function gfmStrikethrough(options) {
|
|
|
47550
47552
|
}
|
|
47551
47553
|
}
|
|
47552
47554
|
|
|
47553
|
-
;//
|
|
47555
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/edit-map.js
|
|
47554
47556
|
/**
|
|
47555
47557
|
* @typedef {import('micromark-util-types').Event} Event
|
|
47556
47558
|
*/
|
|
@@ -47755,7 +47757,7 @@ function addImpl(editMap, at, remove, add) {
|
|
|
47755
47757
|
// }
|
|
47756
47758
|
// }
|
|
47757
47759
|
|
|
47758
|
-
;//
|
|
47760
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/infer.js
|
|
47759
47761
|
/**
|
|
47760
47762
|
* @typedef {import('micromark-util-types').Event} Event
|
|
47761
47763
|
*/
|
|
@@ -47813,7 +47815,7 @@ function gfmTableAlign(events, index) {
|
|
|
47813
47815
|
return align
|
|
47814
47816
|
}
|
|
47815
47817
|
|
|
47816
|
-
;//
|
|
47818
|
+
;// ./node_modules/micromark-extension-gfm-table/lib/syntax.js
|
|
47817
47819
|
/**
|
|
47818
47820
|
* @typedef {import('micromark-util-types').Event} Event
|
|
47819
47821
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
@@ -48694,7 +48696,7 @@ function getPoint(events, index) {
|
|
|
48694
48696
|
return event[1][side]
|
|
48695
48697
|
}
|
|
48696
48698
|
|
|
48697
|
-
;//
|
|
48699
|
+
;// ./node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js
|
|
48698
48700
|
/**
|
|
48699
48701
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
48700
48702
|
* @typedef {import('micromark-util-types').State} State
|
|
@@ -48861,7 +48863,7 @@ function spaceThenNonSpace(effects, ok, nok) {
|
|
|
48861
48863
|
}
|
|
48862
48864
|
}
|
|
48863
48865
|
|
|
48864
|
-
;//
|
|
48866
|
+
;// ./node_modules/micromark-extension-gfm/index.js
|
|
48865
48867
|
/**
|
|
48866
48868
|
* @typedef {import('micromark-extension-gfm-footnote').HtmlOptions} HtmlOptions
|
|
48867
48869
|
* @typedef {import('micromark-extension-gfm-strikethrough').Options} Options
|
|
@@ -48920,7 +48922,7 @@ function gfmHtml(options) {
|
|
|
48920
48922
|
])
|
|
48921
48923
|
}
|
|
48922
48924
|
|
|
48923
|
-
;//
|
|
48925
|
+
;// ./node_modules/remark-gfm/lib/index.js
|
|
48924
48926
|
/// <reference types="remark-parse" />
|
|
48925
48927
|
/// <reference types="remark-stringify" />
|
|
48926
48928
|
|
|
@@ -48970,13 +48972,13 @@ function remarkGfm(options) {
|
|
|
48970
48972
|
toMarkdownExtensions.push(gfmToMarkdown(settings))
|
|
48971
48973
|
}
|
|
48972
48974
|
|
|
48973
|
-
;//
|
|
48975
|
+
;// ./node_modules/emoji-regex/index.mjs
|
|
48974
48976
|
/* harmony default export */ const emoji_regex = (() => {
|
|
48975
48977
|
// https://mths.be/emoji
|
|
48976
48978
|
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;
|
|
48977
48979
|
});
|
|
48978
48980
|
|
|
48979
|
-
;//
|
|
48981
|
+
;// ./enums.ts
|
|
48980
48982
|
var NodeTypes;
|
|
48981
48983
|
(function (NodeTypes) {
|
|
48982
48984
|
NodeTypes["callout"] = "rdme-callout";
|
|
@@ -48995,7 +48997,7 @@ var NodeTypes;
|
|
|
48995
48997
|
NodeTypes["variable"] = "readme-variable";
|
|
48996
48998
|
})(NodeTypes || (NodeTypes = {}));
|
|
48997
48999
|
|
|
48998
|
-
;//
|
|
49000
|
+
;// ./processor/transform/callouts.ts
|
|
48999
49001
|
|
|
49000
49002
|
|
|
49001
49003
|
|
|
@@ -49027,7 +49029,7 @@ const calloutTransformer = () => {
|
|
|
49027
49029
|
};
|
|
49028
49030
|
/* harmony default export */ const callouts = (calloutTransformer);
|
|
49029
49031
|
|
|
49030
|
-
;//
|
|
49032
|
+
;// ./processor/transform/code-tabs.ts
|
|
49031
49033
|
|
|
49032
49034
|
|
|
49033
49035
|
const isCode = (node) => (node === null || node === void 0 ? void 0 : node.type) === 'code';
|
|
@@ -49076,7 +49078,7 @@ const codeTabsTransformer = ({ copyButtons } = {}) => (tree) => {
|
|
|
49076
49078
|
};
|
|
49077
49079
|
/* harmony default export */ const code_tabs = (codeTabsTransformer);
|
|
49078
49080
|
|
|
49079
|
-
;//
|
|
49081
|
+
;// ./processor/transform/embeds.ts
|
|
49080
49082
|
|
|
49081
49083
|
|
|
49082
49084
|
const embedTransformer = () => {
|
|
@@ -49106,7 +49108,7 @@ const embedTransformer = () => {
|
|
|
49106
49108
|
};
|
|
49107
49109
|
/* harmony default export */ const transform_embeds = (embedTransformer);
|
|
49108
49110
|
|
|
49109
|
-
;//
|
|
49111
|
+
;// ./lib/mdast.ts
|
|
49110
49112
|
|
|
49111
49113
|
const mdast = (text, opts = {}) => {
|
|
49112
49114
|
const processor = ast_processor(opts);
|
|
@@ -49115,7 +49117,7 @@ const mdast = (text, opts = {}) => {
|
|
|
49115
49117
|
};
|
|
49116
49118
|
/* harmony default export */ const lib_mdast = (mdast);
|
|
49117
49119
|
|
|
49118
|
-
;//
|
|
49120
|
+
;// ./processor/utils.ts
|
|
49119
49121
|
|
|
49120
49122
|
/**
|
|
49121
49123
|
* Formats the hProperties of a node as a string, so they can be compiled back into JSX/MDX.
|
|
@@ -49290,7 +49292,7 @@ const toAttributes = (object, keys = []) => {
|
|
|
49290
49292
|
return attributes;
|
|
49291
49293
|
};
|
|
49292
49294
|
|
|
49293
|
-
;//
|
|
49295
|
+
;// ./processor/transform/images.ts
|
|
49294
49296
|
|
|
49295
49297
|
|
|
49296
49298
|
|
|
@@ -49330,7 +49332,7 @@ const imageTransformer = () => (tree) => {
|
|
|
49330
49332
|
};
|
|
49331
49333
|
/* harmony default export */ const transform_images = (imageTransformer);
|
|
49332
49334
|
|
|
49333
|
-
;//
|
|
49335
|
+
;// ./node_modules/gemoji/index.js
|
|
49334
49336
|
/**
|
|
49335
49337
|
* @typedef Gemoji
|
|
49336
49338
|
* @property {string} emoji
|
|
@@ -66242,7 +66244,7 @@ const emojiToName = {
|
|
|
66242
66244
|
'🏴': 'wales'
|
|
66243
66245
|
}
|
|
66244
66246
|
|
|
66245
|
-
;//
|
|
66247
|
+
;// ./lib/owlmoji.ts
|
|
66246
66248
|
|
|
66247
66249
|
const owlmoji = ['owlbert-books', 'owlbert-mask', 'owlbert', 'owlbert-reading', 'owlbert-thinking'];
|
|
66248
66250
|
class Owlmoji {
|
|
@@ -66259,7 +66261,7 @@ Owlmoji.kind = (name) => {
|
|
|
66259
66261
|
Owlmoji.nameToEmoji = nameToEmoji;
|
|
66260
66262
|
/* harmony default export */ const lib_owlmoji = (Owlmoji);
|
|
66261
66263
|
|
|
66262
|
-
;//
|
|
66264
|
+
;// ./processor/transform/gemoji+.ts
|
|
66263
66265
|
|
|
66264
66266
|
|
|
66265
66267
|
|
|
@@ -66314,7 +66316,7 @@ const gemojiTransformer = () => (tree) => {
|
|
|
66314
66316
|
};
|
|
66315
66317
|
/* harmony default export */ const gemoji_ = (gemojiTransformer);
|
|
66316
66318
|
|
|
66317
|
-
;//
|
|
66319
|
+
;// ./processor/transform/div.ts
|
|
66318
66320
|
var div_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
66319
66321
|
var t = {};
|
|
66320
66322
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -66347,7 +66349,7 @@ const divTransformer = () => tree => {
|
|
|
66347
66349
|
};
|
|
66348
66350
|
/* harmony default export */ const transform_div = (divTransformer);
|
|
66349
66351
|
|
|
66350
|
-
;//
|
|
66352
|
+
;// ./processor/transform/inject-components.ts
|
|
66351
66353
|
|
|
66352
66354
|
|
|
66353
66355
|
const inject = ({ components } = {}) => (node, index, parent) => {
|
|
@@ -66362,7 +66364,7 @@ const injectComponents = (opts) => () => tree => {
|
|
|
66362
66364
|
};
|
|
66363
66365
|
/* harmony default export */ const inject_components = (injectComponents);
|
|
66364
66366
|
|
|
66365
|
-
;//
|
|
66367
|
+
;// ./processor/transform/readme-components.ts
|
|
66366
66368
|
|
|
66367
66369
|
|
|
66368
66370
|
|
|
@@ -66515,7 +66517,7 @@ const readmeComponents = (opts) => () => tree => {
|
|
|
66515
66517
|
};
|
|
66516
66518
|
/* harmony default export */ const readme_components = (readmeComponents);
|
|
66517
66519
|
|
|
66518
|
-
;//
|
|
66520
|
+
;// ./processor/transform/readme-to-mdx.ts
|
|
66519
66521
|
|
|
66520
66522
|
|
|
66521
66523
|
|
|
@@ -66600,7 +66602,7 @@ const readmeToMdx = () => tree => {
|
|
|
66600
66602
|
};
|
|
66601
66603
|
/* harmony default export */ const readme_to_mdx = (readmeToMdx);
|
|
66602
66604
|
|
|
66603
|
-
;//
|
|
66605
|
+
;// ./processor/transform/variables.ts
|
|
66604
66606
|
|
|
66605
66607
|
|
|
66606
66608
|
const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
@@ -66641,7 +66643,7 @@ const variables = ({ asMdx } = { asMdx: true }) => tree => {
|
|
|
66641
66643
|
};
|
|
66642
66644
|
/* harmony default export */ const transform_variables = (variables);
|
|
66643
66645
|
|
|
66644
|
-
;//
|
|
66646
|
+
;// ./processor/transform/tables-to-jsx.ts
|
|
66645
66647
|
|
|
66646
66648
|
|
|
66647
66649
|
const alignToStyle = (align) => {
|
|
@@ -66733,7 +66735,7 @@ const tablesToJsx = () => tree => {
|
|
|
66733
66735
|
};
|
|
66734
66736
|
/* harmony default export */ const tables_to_jsx = (tablesToJsx);
|
|
66735
66737
|
|
|
66736
|
-
;//
|
|
66738
|
+
;// ./processor/transform/compatability.ts
|
|
66737
66739
|
|
|
66738
66740
|
|
|
66739
66741
|
const strongTest = (node) => ['emphasis', 'strong'].includes(node.type);
|
|
@@ -66758,7 +66760,7 @@ const compatibilityTransfomer = () => tree => {
|
|
|
66758
66760
|
};
|
|
66759
66761
|
/* harmony default export */ const compatability = (compatibilityTransfomer);
|
|
66760
66762
|
|
|
66761
|
-
;//
|
|
66763
|
+
;// ./processor/transform/mermaid.ts
|
|
66762
66764
|
|
|
66763
66765
|
const mermaidTransformer = () => (tree) => {
|
|
66764
66766
|
visit(tree, 'element', (node) => {
|
|
@@ -66773,7 +66775,7 @@ const mermaidTransformer = () => (tree) => {
|
|
|
66773
66775
|
};
|
|
66774
66776
|
/* harmony default export */ const transform_mermaid = (mermaidTransformer);
|
|
66775
66777
|
|
|
66776
|
-
;//
|
|
66778
|
+
;// ./processor/transform/index.ts
|
|
66777
66779
|
|
|
66778
66780
|
|
|
66779
66781
|
|
|
@@ -66797,12 +66799,12 @@ const defaultTransforms = {
|
|
|
66797
66799
|
};
|
|
66798
66800
|
/* harmony default export */ const transform = (Object.values(defaultTransforms));
|
|
66799
66801
|
|
|
66800
|
-
;//
|
|
66802
|
+
;// ./node_modules/rehype-slug/node_modules/github-slugger/regex.js
|
|
66801
66803
|
// This module is generated by `script/`.
|
|
66802
66804
|
/* eslint-disable no-control-regex, no-misleading-character-class, no-useless-escape */
|
|
66803
66805
|
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
|
|
66804
66806
|
|
|
66805
|
-
;//
|
|
66807
|
+
;// ./node_modules/rehype-slug/node_modules/github-slugger/index.js
|
|
66806
66808
|
|
|
66807
66809
|
|
|
66808
66810
|
const github_slugger_own = Object.hasOwnProperty
|
|
@@ -66881,7 +66883,7 @@ function slug (value, maintainCase) {
|
|
|
66881
66883
|
return value.replace(regex_regex, '').replace(/ /g, '-')
|
|
66882
66884
|
}
|
|
66883
66885
|
|
|
66884
|
-
;//
|
|
66886
|
+
;// ./node_modules/rehype-slug/node_modules/hast-util-heading-rank/lib/index.js
|
|
66885
66887
|
/**
|
|
66886
66888
|
* @typedef {import('hast').Nodes} Nodes
|
|
66887
66889
|
*/
|
|
@@ -66905,7 +66907,7 @@ function headingRank(node) {
|
|
|
66905
66907
|
: undefined
|
|
66906
66908
|
}
|
|
66907
66909
|
|
|
66908
|
-
;//
|
|
66910
|
+
;// ./node_modules/rehype-slug/node_modules/hast-util-to-string/lib/index.js
|
|
66909
66911
|
/**
|
|
66910
66912
|
* @typedef {import('hast').Nodes} Nodes
|
|
66911
66913
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -66962,7 +66964,7 @@ function hast_util_to_string_lib_all(node) {
|
|
|
66962
66964
|
return result.join('')
|
|
66963
66965
|
}
|
|
66964
66966
|
|
|
66965
|
-
;//
|
|
66967
|
+
;// ./node_modules/rehype-slug/lib/index.js
|
|
66966
66968
|
/**
|
|
66967
66969
|
* @typedef {import('hast').Root} Root
|
|
66968
66970
|
*/
|
|
@@ -67012,7 +67014,7 @@ function rehypeSlug(options) {
|
|
|
67012
67014
|
}
|
|
67013
67015
|
}
|
|
67014
67016
|
|
|
67015
|
-
;//
|
|
67017
|
+
;// ./lib/ast-processor.ts
|
|
67016
67018
|
|
|
67017
67019
|
|
|
67018
67020
|
|
|
@@ -67029,7 +67031,7 @@ const astProcessor = (opts = { components: {} }) => remark()
|
|
|
67029
67031
|
.use(readme_components({ components: opts.components }));
|
|
67030
67032
|
/* harmony default export */ const ast_processor = (astProcessor);
|
|
67031
67033
|
|
|
67032
|
-
;//
|
|
67034
|
+
;// ./node_modules/markdown-extensions/index.js
|
|
67033
67035
|
// TODO: Load the JSON file when Node.js supports that.
|
|
67034
67036
|
|
|
67035
67037
|
const markdownExtension = [
|
|
@@ -67045,7 +67047,7 @@ const markdownExtension = [
|
|
|
67045
67047
|
|
|
67046
67048
|
/* harmony default export */ const markdown_extensions = (markdownExtension);
|
|
67047
67049
|
|
|
67048
|
-
;//
|
|
67050
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/extnames.js
|
|
67049
67051
|
|
|
67050
67052
|
|
|
67051
67053
|
const md = markdown_extensions.map(function (d) {
|
|
@@ -67053,7 +67055,7 @@ const md = markdown_extensions.map(function (d) {
|
|
|
67053
67055
|
})
|
|
67054
67056
|
const mdx = (/* unused pure expression or super */ null && (['.mdx']))
|
|
67055
67057
|
|
|
67056
|
-
;//
|
|
67058
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/resolve-file-and-options.js
|
|
67057
67059
|
/**
|
|
67058
67060
|
* @typedef {import('vfile').Compatible} Compatible
|
|
67059
67061
|
* @typedef {import('../compile.js').CompileOptions} CompileOptions
|
|
@@ -67108,7 +67110,7 @@ function resolve_file_and_options_looksLikeAVFile(value) {
|
|
|
67108
67110
|
)
|
|
67109
67111
|
}
|
|
67110
67112
|
|
|
67111
|
-
;//
|
|
67113
|
+
;// ./node_modules/@ungap/structured-clone/esm/types.js
|
|
67112
67114
|
const VOID = -1;
|
|
67113
67115
|
const PRIMITIVE = 0;
|
|
67114
67116
|
const ARRAY = 1;
|
|
@@ -67121,7 +67123,7 @@ const ERROR = 7;
|
|
|
67121
67123
|
const BIGINT = 8;
|
|
67122
67124
|
// export const SYMBOL = 9;
|
|
67123
67125
|
|
|
67124
|
-
;//
|
|
67126
|
+
;// ./node_modules/@ungap/structured-clone/esm/deserialize.js
|
|
67125
67127
|
|
|
67126
67128
|
|
|
67127
67129
|
const env = typeof self === 'object' ? self : globalThis;
|
|
@@ -67197,7 +67199,7 @@ const deserializer = ($, _) => {
|
|
|
67197
67199
|
*/
|
|
67198
67200
|
const deserialize = serialized => deserializer(new Map, serialized)(0);
|
|
67199
67201
|
|
|
67200
|
-
;//
|
|
67202
|
+
;// ./node_modules/@ungap/structured-clone/esm/serialize.js
|
|
67201
67203
|
|
|
67202
67204
|
|
|
67203
67205
|
const EMPTY = '';
|
|
@@ -67355,7 +67357,7 @@ const serializer = (strict, json, $, _) => {
|
|
|
67355
67357
|
return serializer(!(json || lossy), !!json, new Map, _)(value), _;
|
|
67356
67358
|
};
|
|
67357
67359
|
|
|
67358
|
-
;//
|
|
67360
|
+
;// ./node_modules/@ungap/structured-clone/esm/index.js
|
|
67359
67361
|
|
|
67360
67362
|
|
|
67361
67363
|
|
|
@@ -67382,7 +67384,7 @@ const serializer = (strict, json, $, _) => {
|
|
|
67382
67384
|
|
|
67383
67385
|
|
|
67384
67386
|
|
|
67385
|
-
;//
|
|
67387
|
+
;// ./node_modules/micromark-util-sanitize-uri/index.js
|
|
67386
67388
|
|
|
67387
67389
|
|
|
67388
67390
|
/**
|
|
@@ -67498,7 +67500,7 @@ function normalizeUri(value) {
|
|
|
67498
67500
|
return result.join('') + value.slice(start)
|
|
67499
67501
|
}
|
|
67500
67502
|
|
|
67501
|
-
;//
|
|
67503
|
+
;// ./node_modules/mdast-util-to-hast/lib/footer.js
|
|
67502
67504
|
/**
|
|
67503
67505
|
* @typedef {import('hast').Element} Element
|
|
67504
67506
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -67750,7 +67752,7 @@ function footer(state) {
|
|
|
67750
67752
|
}
|
|
67751
67753
|
}
|
|
67752
67754
|
|
|
67753
|
-
;//
|
|
67755
|
+
;// ./node_modules/unist-util-position/lib/index.js
|
|
67754
67756
|
/**
|
|
67755
67757
|
* @typedef {import('unist').Node} Node
|
|
67756
67758
|
* @typedef {import('unist').Point} Point
|
|
@@ -67847,7 +67849,7 @@ function lib_position(node) {
|
|
|
67847
67849
|
}
|
|
67848
67850
|
}
|
|
67849
67851
|
|
|
67850
|
-
;//
|
|
67852
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/blockquote.js
|
|
67851
67853
|
/**
|
|
67852
67854
|
* @typedef {import('hast').Element} Element
|
|
67853
67855
|
* @typedef {import('mdast').Blockquote} Blockquote
|
|
@@ -67879,7 +67881,7 @@ function blockquote_blockquote(state, node) {
|
|
|
67879
67881
|
return state.applyData(node, result)
|
|
67880
67882
|
}
|
|
67881
67883
|
|
|
67882
|
-
;//
|
|
67884
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/break.js
|
|
67883
67885
|
/**
|
|
67884
67886
|
* @typedef {import('hast').Element} Element
|
|
67885
67887
|
* @typedef {import('hast').Text} Text
|
|
@@ -67907,7 +67909,7 @@ function break_hardBreak(state, node) {
|
|
|
67907
67909
|
return [state.applyData(node, result), {type: 'text', value: '\n'}]
|
|
67908
67910
|
}
|
|
67909
67911
|
|
|
67910
|
-
;//
|
|
67912
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/code.js
|
|
67911
67913
|
/**
|
|
67912
67914
|
* @typedef {import('hast').Element} Element
|
|
67913
67915
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -67959,7 +67961,7 @@ function code_code(state, node) {
|
|
|
67959
67961
|
return result
|
|
67960
67962
|
}
|
|
67961
67963
|
|
|
67962
|
-
;//
|
|
67964
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/delete.js
|
|
67963
67965
|
/**
|
|
67964
67966
|
* @typedef {import('hast').Element} Element
|
|
67965
67967
|
* @typedef {import('mdast').Delete} Delete
|
|
@@ -67991,7 +67993,7 @@ function strikethrough(state, node) {
|
|
|
67991
67993
|
return state.applyData(node, result)
|
|
67992
67994
|
}
|
|
67993
67995
|
|
|
67994
|
-
;//
|
|
67996
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/emphasis.js
|
|
67995
67997
|
/**
|
|
67996
67998
|
* @typedef {import('hast').Element} Element
|
|
67997
67999
|
* @typedef {import('mdast').Emphasis} Emphasis
|
|
@@ -68023,7 +68025,7 @@ function emphasis_emphasis(state, node) {
|
|
|
68023
68025
|
return state.applyData(node, result)
|
|
68024
68026
|
}
|
|
68025
68027
|
|
|
68026
|
-
;//
|
|
68028
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js
|
|
68027
68029
|
/**
|
|
68028
68030
|
* @typedef {import('hast').Element} Element
|
|
68029
68031
|
* @typedef {import('mdast').FootnoteReference} FootnoteReference
|
|
@@ -68095,7 +68097,7 @@ function footnote_reference_footnoteReference(state, node) {
|
|
|
68095
68097
|
return state.applyData(node, sup)
|
|
68096
68098
|
}
|
|
68097
68099
|
|
|
68098
|
-
;//
|
|
68100
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/heading.js
|
|
68099
68101
|
/**
|
|
68100
68102
|
* @typedef {import('hast').Element} Element
|
|
68101
68103
|
* @typedef {import('mdast').Heading} Heading
|
|
@@ -68127,7 +68129,7 @@ function heading_heading(state, node) {
|
|
|
68127
68129
|
return state.applyData(node, result)
|
|
68128
68130
|
}
|
|
68129
68131
|
|
|
68130
|
-
;//
|
|
68132
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/html.js
|
|
68131
68133
|
/**
|
|
68132
68134
|
* @typedef {import('hast').Element} Element
|
|
68133
68135
|
* @typedef {import('mdast').Html} Html
|
|
@@ -68160,7 +68162,7 @@ function html_html(state, node) {
|
|
|
68160
68162
|
return undefined
|
|
68161
68163
|
}
|
|
68162
68164
|
|
|
68163
|
-
;//
|
|
68165
|
+
;// ./node_modules/mdast-util-to-hast/lib/revert.js
|
|
68164
68166
|
/**
|
|
68165
68167
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
68166
68168
|
*
|
|
@@ -68217,7 +68219,7 @@ function revert(state, node) {
|
|
|
68217
68219
|
return contents
|
|
68218
68220
|
}
|
|
68219
68221
|
|
|
68220
|
-
;//
|
|
68222
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/image-reference.js
|
|
68221
68223
|
/**
|
|
68222
68224
|
* @typedef {import('hast').Element} Element
|
|
68223
68225
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -68260,7 +68262,7 @@ function image_reference_imageReference(state, node) {
|
|
|
68260
68262
|
return state.applyData(node, result)
|
|
68261
68263
|
}
|
|
68262
68264
|
|
|
68263
|
-
;//
|
|
68265
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/image.js
|
|
68264
68266
|
/**
|
|
68265
68267
|
* @typedef {import('hast').Element} Element
|
|
68266
68268
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -68298,7 +68300,7 @@ function handlers_image_image(state, node) {
|
|
|
68298
68300
|
return state.applyData(node, result)
|
|
68299
68301
|
}
|
|
68300
68302
|
|
|
68301
|
-
;//
|
|
68303
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/inline-code.js
|
|
68302
68304
|
/**
|
|
68303
68305
|
* @typedef {import('hast').Element} Element
|
|
68304
68306
|
* @typedef {import('hast').Text} Text
|
|
@@ -68335,7 +68337,7 @@ function inline_code_inlineCode(state, node) {
|
|
|
68335
68337
|
return state.applyData(node, result)
|
|
68336
68338
|
}
|
|
68337
68339
|
|
|
68338
|
-
;//
|
|
68340
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/link-reference.js
|
|
68339
68341
|
/**
|
|
68340
68342
|
* @typedef {import('hast').Element} Element
|
|
68341
68343
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -68383,7 +68385,7 @@ function link_reference_linkReference(state, node) {
|
|
|
68383
68385
|
return state.applyData(node, result)
|
|
68384
68386
|
}
|
|
68385
68387
|
|
|
68386
|
-
;//
|
|
68388
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/link.js
|
|
68387
68389
|
/**
|
|
68388
68390
|
* @typedef {import('hast').Element} Element
|
|
68389
68391
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -68422,7 +68424,7 @@ function handlers_link_link(state, node) {
|
|
|
68422
68424
|
return state.applyData(node, result)
|
|
68423
68425
|
}
|
|
68424
68426
|
|
|
68425
|
-
;//
|
|
68427
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/list-item.js
|
|
68426
68428
|
/**
|
|
68427
68429
|
* @typedef {import('hast').Element} Element
|
|
68428
68430
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -68549,7 +68551,7 @@ function listItemLoose(node) {
|
|
|
68549
68551
|
: spread
|
|
68550
68552
|
}
|
|
68551
68553
|
|
|
68552
|
-
;//
|
|
68554
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/list.js
|
|
68553
68555
|
/**
|
|
68554
68556
|
* @typedef {import('hast').Element} Element
|
|
68555
68557
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -68607,7 +68609,7 @@ function handlers_list_list(state, node) {
|
|
|
68607
68609
|
return state.applyData(node, result)
|
|
68608
68610
|
}
|
|
68609
68611
|
|
|
68610
|
-
;//
|
|
68612
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/paragraph.js
|
|
68611
68613
|
/**
|
|
68612
68614
|
* @typedef {import('hast').Element} Element
|
|
68613
68615
|
* @typedef {import('mdast').Paragraph} Paragraph
|
|
@@ -68639,7 +68641,7 @@ function paragraph_paragraph(state, node) {
|
|
|
68639
68641
|
return state.applyData(node, result)
|
|
68640
68642
|
}
|
|
68641
68643
|
|
|
68642
|
-
;//
|
|
68644
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/root.js
|
|
68643
68645
|
/**
|
|
68644
68646
|
* @typedef {import('hast').Parents} HastParents
|
|
68645
68647
|
* @typedef {import('hast').Root} HastRoot
|
|
@@ -68667,7 +68669,7 @@ function root_root(state, node) {
|
|
|
68667
68669
|
return state.applyData(node, result)
|
|
68668
68670
|
}
|
|
68669
68671
|
|
|
68670
|
-
;//
|
|
68672
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/strong.js
|
|
68671
68673
|
/**
|
|
68672
68674
|
* @typedef {import('hast').Element} Element
|
|
68673
68675
|
* @typedef {import('mdast').Strong} Strong
|
|
@@ -68699,7 +68701,7 @@ function strong_strong(state, node) {
|
|
|
68699
68701
|
return state.applyData(node, result)
|
|
68700
68702
|
}
|
|
68701
68703
|
|
|
68702
|
-
;//
|
|
68704
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table.js
|
|
68703
68705
|
/**
|
|
68704
68706
|
* @typedef {import('hast').Element} Element
|
|
68705
68707
|
* @typedef {import('mdast').Table} Table
|
|
@@ -68762,7 +68764,7 @@ function table(state, node) {
|
|
|
68762
68764
|
return state.applyData(node, result)
|
|
68763
68765
|
}
|
|
68764
68766
|
|
|
68765
|
-
;//
|
|
68767
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table-row.js
|
|
68766
68768
|
/**
|
|
68767
68769
|
* @typedef {import('hast').Element} Element
|
|
68768
68770
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -68833,7 +68835,7 @@ function tableRow(state, node, parent) {
|
|
|
68833
68835
|
return state.applyData(node, result)
|
|
68834
68836
|
}
|
|
68835
68837
|
|
|
68836
|
-
;//
|
|
68838
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/table-cell.js
|
|
68837
68839
|
/**
|
|
68838
68840
|
* @typedef {import('hast').Element} Element
|
|
68839
68841
|
* @typedef {import('mdast').TableCell} TableCell
|
|
@@ -68867,7 +68869,7 @@ function tableCell(state, node) {
|
|
|
68867
68869
|
return state.applyData(node, result)
|
|
68868
68870
|
}
|
|
68869
68871
|
|
|
68870
|
-
;//
|
|
68872
|
+
;// ./node_modules/trim-lines/index.js
|
|
68871
68873
|
const tab = 9 /* `\t` */
|
|
68872
68874
|
const space = 32 /* ` ` */
|
|
68873
68875
|
|
|
@@ -68938,7 +68940,7 @@ function trimLine(value, start, end) {
|
|
|
68938
68940
|
return endIndex > startIndex ? value.slice(startIndex, endIndex) : ''
|
|
68939
68941
|
}
|
|
68940
68942
|
|
|
68941
|
-
;//
|
|
68943
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/text.js
|
|
68942
68944
|
/**
|
|
68943
68945
|
* @typedef {import('hast').Element} HastElement
|
|
68944
68946
|
* @typedef {import('hast').Text} HastText
|
|
@@ -68965,7 +68967,7 @@ function handlers_text_text(state, node) {
|
|
|
68965
68967
|
return state.applyData(node, result)
|
|
68966
68968
|
}
|
|
68967
68969
|
|
|
68968
|
-
;//
|
|
68970
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js
|
|
68969
68971
|
/**
|
|
68970
68972
|
* @typedef {import('hast').Element} Element
|
|
68971
68973
|
* @typedef {import('mdast').ThematicBreak} ThematicBreak
|
|
@@ -68997,7 +68999,7 @@ function handlers_thematic_break_thematicBreak(state, node) {
|
|
|
68997
68999
|
return state.applyData(node, result)
|
|
68998
69000
|
}
|
|
68999
69001
|
|
|
69000
|
-
;//
|
|
69002
|
+
;// ./node_modules/mdast-util-to-hast/lib/handlers/index.js
|
|
69001
69003
|
|
|
69002
69004
|
|
|
69003
69005
|
|
|
@@ -69063,7 +69065,7 @@ function ignore() {
|
|
|
69063
69065
|
return undefined
|
|
69064
69066
|
}
|
|
69065
69067
|
|
|
69066
|
-
;//
|
|
69068
|
+
;// ./node_modules/mdast-util-to-hast/lib/state.js
|
|
69067
69069
|
/**
|
|
69068
69070
|
* @typedef {import('hast').Element} HastElement
|
|
69069
69071
|
* @typedef {import('hast').ElementContent} HastElementContent
|
|
@@ -69538,7 +69540,7 @@ function trimMarkdownSpaceStart(value) {
|
|
|
69538
69540
|
return value.slice(index)
|
|
69539
69541
|
}
|
|
69540
69542
|
|
|
69541
|
-
;//
|
|
69543
|
+
;// ./node_modules/mdast-util-to-hast/lib/index.js
|
|
69542
69544
|
/**
|
|
69543
69545
|
* @typedef {import('hast').Nodes} HastNodes
|
|
69544
69546
|
* @typedef {import('mdast').Nodes} MdastNodes
|
|
@@ -69646,7 +69648,7 @@ function toHast(tree, options) {
|
|
|
69646
69648
|
return result
|
|
69647
69649
|
}
|
|
69648
69650
|
|
|
69649
|
-
;//
|
|
69651
|
+
;// ./node_modules/remark-rehype/lib/index.js
|
|
69650
69652
|
// Include `data` fields in mdast and `raw` nodes in hast.
|
|
69651
69653
|
/// <reference types="mdast-util-to-hast" />
|
|
69652
69654
|
|
|
@@ -69807,7 +69809,7 @@ function remarkRehype(destination, options) {
|
|
|
69807
69809
|
}
|
|
69808
69810
|
}
|
|
69809
69811
|
|
|
69810
|
-
;//
|
|
69812
|
+
;// ./node_modules/estree-walker/src/walker.js
|
|
69811
69813
|
/**
|
|
69812
69814
|
* @typedef { import('estree').Node} Node
|
|
69813
69815
|
* @typedef {{
|
|
@@ -69870,7 +69872,7 @@ class WalkerBase {
|
|
|
69870
69872
|
}
|
|
69871
69873
|
}
|
|
69872
69874
|
|
|
69873
|
-
;//
|
|
69875
|
+
;// ./node_modules/estree-walker/src/sync.js
|
|
69874
69876
|
|
|
69875
69877
|
|
|
69876
69878
|
/**
|
|
@@ -70024,7 +70026,7 @@ function isNode(value) {
|
|
|
70024
70026
|
);
|
|
70025
70027
|
}
|
|
70026
70028
|
|
|
70027
|
-
;//
|
|
70029
|
+
;// ./node_modules/estree-walker/src/async.js
|
|
70028
70030
|
|
|
70029
70031
|
|
|
70030
70032
|
/**
|
|
@@ -70178,7 +70180,7 @@ function async_isNode(value) {
|
|
|
70178
70180
|
);
|
|
70179
70181
|
}
|
|
70180
70182
|
|
|
70181
|
-
;//
|
|
70183
|
+
;// ./node_modules/estree-walker/src/index.js
|
|
70182
70184
|
|
|
70183
70185
|
|
|
70184
70186
|
|
|
@@ -70214,7 +70216,7 @@ async function asyncWalk(ast, { enter, leave }) {
|
|
|
70214
70216
|
return await instance.visit(ast, null);
|
|
70215
70217
|
}
|
|
70216
70218
|
|
|
70217
|
-
;//
|
|
70219
|
+
;// ./node_modules/is-reference/src/index.js
|
|
70218
70220
|
/** @typedef { import('estree').Node} Node */
|
|
70219
70221
|
/** @typedef {Node | {
|
|
70220
70222
|
* type: 'PropertyDefinition';
|
|
@@ -70265,7 +70267,7 @@ function is_reference (node, parent) {
|
|
|
70265
70267
|
return false;
|
|
70266
70268
|
}
|
|
70267
70269
|
|
|
70268
|
-
;//
|
|
70270
|
+
;// ./node_modules/periscopic/src/index.js
|
|
70269
70271
|
|
|
70270
70272
|
|
|
70271
70273
|
|
|
@@ -70514,7 +70516,7 @@ function extract_identifiers(param, nodes = []) {
|
|
|
70514
70516
|
return nodes;
|
|
70515
70517
|
}
|
|
70516
70518
|
|
|
70517
|
-
;//
|
|
70519
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-create.js
|
|
70518
70520
|
/**
|
|
70519
70521
|
* @typedef {import('estree-jsx').Node} Node
|
|
70520
70522
|
*/
|
|
@@ -70546,7 +70548,7 @@ function estree_util_create_create(from, to) {
|
|
|
70546
70548
|
}
|
|
70547
70549
|
}
|
|
70548
70550
|
|
|
70549
|
-
;//
|
|
70551
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-declaration-to-expression.js
|
|
70550
70552
|
/**
|
|
70551
70553
|
* @typedef {import('estree-jsx').Declaration} Declaration
|
|
70552
70554
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
@@ -70579,7 +70581,7 @@ function declarationToExpression(declaration) {
|
|
|
70579
70581
|
return {...declaration, type: 'ClassExpression'}
|
|
70580
70582
|
}
|
|
70581
70583
|
|
|
70582
|
-
;//
|
|
70584
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-is-declaration.js
|
|
70583
70585
|
/**
|
|
70584
70586
|
* @typedef {import('estree-jsx').Declaration} Declaration
|
|
70585
70587
|
* @typedef {import('estree-jsx').MaybeNamedClassDeclaration} MaybeNamedClassDeclaration
|
|
@@ -70606,7 +70608,7 @@ function isDeclaration(node) {
|
|
|
70606
70608
|
)
|
|
70607
70609
|
}
|
|
70608
70610
|
|
|
70609
|
-
;//
|
|
70611
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-specifiers-to-declarations.js
|
|
70610
70612
|
/**
|
|
70611
70613
|
* @typedef {import('estree-jsx').AssignmentProperty} AssignmentProperty
|
|
70612
70614
|
* @typedef {import('estree-jsx').ExportSpecifier} ExportSpecifier
|
|
@@ -70701,7 +70703,7 @@ function specifiersToDeclarations(specifiers, init) {
|
|
|
70701
70703
|
return declarations
|
|
70702
70704
|
}
|
|
70703
70705
|
|
|
70704
|
-
;//
|
|
70706
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-id-or-member-expression.js
|
|
70705
70707
|
/**
|
|
70706
70708
|
* @typedef {import('estree-jsx').Identifier} Identifier
|
|
70707
70709
|
* @typedef {import('estree-jsx').JSXIdentifier} JSXIdentifier
|
|
@@ -70774,7 +70776,7 @@ function toJsxIdOrMemberExpression(ids) {
|
|
|
70774
70776
|
return object
|
|
70775
70777
|
}
|
|
70776
70778
|
|
|
70777
|
-
;//
|
|
70779
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-document.js
|
|
70778
70780
|
/**
|
|
70779
70781
|
* @typedef {import('estree-jsx').CallExpression} CallExpression
|
|
70780
70782
|
* @typedef {import('estree-jsx').Directive} Directive
|
|
@@ -71656,7 +71658,7 @@ function createImportMetaUrlVariable() {
|
|
|
71656
71658
|
]
|
|
71657
71659
|
}
|
|
71658
71660
|
|
|
71659
|
-
;//
|
|
71661
|
+
;// ./node_modules/estree-util-build-jsx/lib/index.js
|
|
71660
71662
|
/**
|
|
71661
71663
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
71662
71664
|
* @typedef {import('estree-jsx').Identifier} Identifier
|
|
@@ -72298,7 +72300,7 @@ function lib_create(from, to) {
|
|
|
72298
72300
|
}
|
|
72299
72301
|
}
|
|
72300
72302
|
|
|
72301
|
-
;//
|
|
72303
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-build.js
|
|
72302
72304
|
/**
|
|
72303
72305
|
* @typedef {import('estree-jsx').Program} Program
|
|
72304
72306
|
* @typedef {import('estree-util-build-jsx').Options} BuildJsxOptions
|
|
@@ -72391,7 +72393,7 @@ function recmaJsxBuild(options) {
|
|
|
72391
72393
|
}
|
|
72392
72394
|
}
|
|
72393
72395
|
|
|
72394
|
-
;//
|
|
72396
|
+
;// ./node_modules/@mdx-js/mdx/lib/util/estree-util-to-binary-addition.js
|
|
72395
72397
|
/**
|
|
72396
72398
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
72397
72399
|
*/
|
|
@@ -72418,7 +72420,7 @@ function toBinaryAddition(expressions) {
|
|
|
72418
72420
|
return left
|
|
72419
72421
|
}
|
|
72420
72422
|
|
|
72421
|
-
;//
|
|
72423
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-jsx-rewrite.js
|
|
72422
72424
|
/**
|
|
72423
72425
|
* @typedef {import('estree-jsx').Expression} Expression
|
|
72424
72426
|
* @typedef {import('estree-jsx').Function} EstreeFunction
|
|
@@ -73064,7 +73066,7 @@ function inScope(scope, id) {
|
|
|
73064
73066
|
return false
|
|
73065
73067
|
}
|
|
73066
73068
|
|
|
73067
|
-
;//
|
|
73069
|
+
;// ./node_modules/astring/dist/astring.mjs
|
|
73068
73070
|
// Astring is a tiny and fast JavaScript code generator from an ESTree-compliant AST.
|
|
73069
73071
|
//
|
|
73070
73072
|
// Astring was written by David Bonnet and released under an MIT license.
|
|
@@ -74254,7 +74256,7 @@ function generate(node, options) {
|
|
|
74254
74256
|
return state.output
|
|
74255
74257
|
}
|
|
74256
74258
|
|
|
74257
|
-
;//
|
|
74259
|
+
;// ./node_modules/estree-util-to-js/lib/index.js
|
|
74258
74260
|
/**
|
|
74259
74261
|
* @typedef {import('astring').State} State
|
|
74260
74262
|
* @typedef {import('estree-jsx').Node} Nodes
|
|
@@ -74401,7 +74403,7 @@ function toJs(tree, options) {
|
|
|
74401
74403
|
return {value, map}
|
|
74402
74404
|
}
|
|
74403
74405
|
|
|
74404
|
-
;//
|
|
74406
|
+
;// ./node_modules/estree-util-to-js/lib/jsx.js
|
|
74405
74407
|
/**
|
|
74406
74408
|
* @typedef {import('estree-jsx').JSXAttribute} JsxAttribute
|
|
74407
74409
|
* @typedef {import('estree-jsx').JSXClosingElement} JsxClosingElement
|
|
@@ -74767,7 +74769,7 @@ function replaceJsxChar($0) {
|
|
|
74767
74769
|
: '}'
|
|
74768
74770
|
}
|
|
74769
74771
|
|
|
74770
|
-
;//
|
|
74772
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/recma-stringify.js
|
|
74771
74773
|
/**
|
|
74772
74774
|
* @typedef {import('estree-jsx').Program} Program
|
|
74773
74775
|
* @typedef {import('unified').Processor<undefined, undefined, undefined, Program, string>} Processor
|
|
@@ -74814,7 +74816,7 @@ function recmaStringify(options) {
|
|
|
74814
74816
|
}
|
|
74815
74817
|
}
|
|
74816
74818
|
|
|
74817
|
-
;//
|
|
74819
|
+
;// ./node_modules/property-information/lib/util/schema.js
|
|
74818
74820
|
/**
|
|
74819
74821
|
* @typedef {import('./info.js').Info} Info
|
|
74820
74822
|
* @typedef {Record<string, Info>} Properties
|
|
@@ -74844,7 +74846,7 @@ Schema.prototype.normal = {}
|
|
|
74844
74846
|
/** @type {string|null} */
|
|
74845
74847
|
Schema.prototype.space = null
|
|
74846
74848
|
|
|
74847
|
-
;//
|
|
74849
|
+
;// ./node_modules/property-information/lib/util/merge.js
|
|
74848
74850
|
/**
|
|
74849
74851
|
* @typedef {import('./schema.js').Properties} Properties
|
|
74850
74852
|
* @typedef {import('./schema.js').Normal} Normal
|
|
@@ -74872,7 +74874,7 @@ function merge(definitions, space) {
|
|
|
74872
74874
|
return new Schema(property, normal, space)
|
|
74873
74875
|
}
|
|
74874
74876
|
|
|
74875
|
-
;//
|
|
74877
|
+
;// ./node_modules/property-information/lib/normalize.js
|
|
74876
74878
|
/**
|
|
74877
74879
|
* @param {string} value
|
|
74878
74880
|
* @returns {string}
|
|
@@ -74881,7 +74883,7 @@ function normalize(value) {
|
|
|
74881
74883
|
return value.toLowerCase()
|
|
74882
74884
|
}
|
|
74883
74885
|
|
|
74884
|
-
;//
|
|
74886
|
+
;// ./node_modules/property-information/lib/util/info.js
|
|
74885
74887
|
class Info {
|
|
74886
74888
|
/**
|
|
74887
74889
|
* @constructor
|
|
@@ -74908,7 +74910,7 @@ Info.prototype.commaOrSpaceSeparated = false
|
|
|
74908
74910
|
Info.prototype.mustUseProperty = false
|
|
74909
74911
|
Info.prototype.defined = false
|
|
74910
74912
|
|
|
74911
|
-
;//
|
|
74913
|
+
;// ./node_modules/property-information/lib/util/types.js
|
|
74912
74914
|
let powers = 0
|
|
74913
74915
|
|
|
74914
74916
|
const types_boolean = increment()
|
|
@@ -74923,7 +74925,7 @@ function increment() {
|
|
|
74923
74925
|
return 2 ** ++powers
|
|
74924
74926
|
}
|
|
74925
74927
|
|
|
74926
|
-
;//
|
|
74928
|
+
;// ./node_modules/property-information/lib/util/defined-info.js
|
|
74927
74929
|
|
|
74928
74930
|
|
|
74929
74931
|
|
|
@@ -74969,7 +74971,7 @@ function mark(values, key, value) {
|
|
|
74969
74971
|
}
|
|
74970
74972
|
}
|
|
74971
74973
|
|
|
74972
|
-
;//
|
|
74974
|
+
;// ./node_modules/property-information/lib/util/create.js
|
|
74973
74975
|
/**
|
|
74974
74976
|
* @typedef {import('./schema.js').Properties} Properties
|
|
74975
74977
|
* @typedef {import('./schema.js').Normal} Normal
|
|
@@ -75029,7 +75031,7 @@ function create_create(definition) {
|
|
|
75029
75031
|
return new Schema(property, normal, definition.space)
|
|
75030
75032
|
}
|
|
75031
75033
|
|
|
75032
|
-
;//
|
|
75034
|
+
;// ./node_modules/property-information/lib/xlink.js
|
|
75033
75035
|
|
|
75034
75036
|
|
|
75035
75037
|
const xlink = create_create({
|
|
@@ -75048,7 +75050,7 @@ const xlink = create_create({
|
|
|
75048
75050
|
}
|
|
75049
75051
|
})
|
|
75050
75052
|
|
|
75051
|
-
;//
|
|
75053
|
+
;// ./node_modules/property-information/lib/xml.js
|
|
75052
75054
|
|
|
75053
75055
|
|
|
75054
75056
|
const xml = create_create({
|
|
@@ -75059,7 +75061,7 @@ const xml = create_create({
|
|
|
75059
75061
|
properties: {xmlLang: null, xmlBase: null, xmlSpace: null}
|
|
75060
75062
|
})
|
|
75061
75063
|
|
|
75062
|
-
;//
|
|
75064
|
+
;// ./node_modules/property-information/lib/util/case-sensitive-transform.js
|
|
75063
75065
|
/**
|
|
75064
75066
|
* @param {Record<string, string>} attributes
|
|
75065
75067
|
* @param {string} attribute
|
|
@@ -75069,7 +75071,7 @@ function caseSensitiveTransform(attributes, attribute) {
|
|
|
75069
75071
|
return attribute in attributes ? attributes[attribute] : attribute
|
|
75070
75072
|
}
|
|
75071
75073
|
|
|
75072
|
-
;//
|
|
75074
|
+
;// ./node_modules/property-information/lib/util/case-insensitive-transform.js
|
|
75073
75075
|
|
|
75074
75076
|
|
|
75075
75077
|
/**
|
|
@@ -75081,7 +75083,7 @@ function caseInsensitiveTransform(attributes, property) {
|
|
|
75081
75083
|
return caseSensitiveTransform(attributes, property.toLowerCase())
|
|
75082
75084
|
}
|
|
75083
75085
|
|
|
75084
|
-
;//
|
|
75086
|
+
;// ./node_modules/property-information/lib/xmlns.js
|
|
75085
75087
|
|
|
75086
75088
|
|
|
75087
75089
|
|
|
@@ -75092,7 +75094,7 @@ const xmlns = create_create({
|
|
|
75092
75094
|
properties: {xmlns: null, xmlnsXLink: null}
|
|
75093
75095
|
})
|
|
75094
75096
|
|
|
75095
|
-
;//
|
|
75097
|
+
;// ./node_modules/property-information/lib/aria.js
|
|
75096
75098
|
|
|
75097
75099
|
|
|
75098
75100
|
|
|
@@ -75153,7 +75155,7 @@ const aria = create_create({
|
|
|
75153
75155
|
}
|
|
75154
75156
|
})
|
|
75155
75157
|
|
|
75156
|
-
;//
|
|
75158
|
+
;// ./node_modules/property-information/lib/html.js
|
|
75157
75159
|
|
|
75158
75160
|
|
|
75159
75161
|
|
|
@@ -75470,7 +75472,7 @@ const lib_html_html = create_create({
|
|
|
75470
75472
|
}
|
|
75471
75473
|
})
|
|
75472
75474
|
|
|
75473
|
-
;//
|
|
75475
|
+
;// ./node_modules/property-information/lib/svg.js
|
|
75474
75476
|
|
|
75475
75477
|
|
|
75476
75478
|
|
|
@@ -76033,7 +76035,7 @@ const svg = create_create({
|
|
|
76033
76035
|
}
|
|
76034
76036
|
})
|
|
76035
76037
|
|
|
76036
|
-
;//
|
|
76038
|
+
;// ./node_modules/property-information/index.js
|
|
76037
76039
|
/**
|
|
76038
76040
|
* @typedef {import('./lib/util/info.js').Info} Info
|
|
76039
76041
|
* @typedef {import('./lib/util/schema.js').Schema} Schema
|
|
@@ -76053,7 +76055,7 @@ const svg = create_create({
|
|
|
76053
76055
|
const property_information_html = merge([xml, xlink, xmlns, aria, lib_html_html], 'html')
|
|
76054
76056
|
const property_information_svg = merge([xml, xlink, xmlns, aria, svg], 'svg')
|
|
76055
76057
|
|
|
76056
|
-
;//
|
|
76058
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/comment.js
|
|
76057
76059
|
/**
|
|
76058
76060
|
* @typedef {import('estree').Comment} Comment
|
|
76059
76061
|
*
|
|
@@ -76098,7 +76100,7 @@ function comment(node, state) {
|
|
|
76098
76100
|
return container
|
|
76099
76101
|
}
|
|
76100
76102
|
|
|
76101
|
-
;//
|
|
76103
|
+
;// ./node_modules/comma-separated-tokens/index.js
|
|
76102
76104
|
/**
|
|
76103
76105
|
* @typedef Options
|
|
76104
76106
|
* Configuration for `stringify`.
|
|
@@ -76174,7 +76176,7 @@ function comma_separated_tokens_stringify(values, options) {
|
|
|
76174
76176
|
.trim()
|
|
76175
76177
|
}
|
|
76176
76178
|
|
|
76177
|
-
;//
|
|
76179
|
+
;// ./node_modules/property-information/lib/find.js
|
|
76178
76180
|
/**
|
|
76179
76181
|
* @typedef {import('./util/schema.js').Schema} Schema
|
|
76180
76182
|
*/
|
|
@@ -76244,7 +76246,7 @@ function camelcase($0) {
|
|
|
76244
76246
|
return $0.charAt(1).toUpperCase()
|
|
76245
76247
|
}
|
|
76246
76248
|
|
|
76247
|
-
;//
|
|
76249
|
+
;// ./node_modules/property-information/lib/hast-to-react.js
|
|
76248
76250
|
/**
|
|
76249
76251
|
* `hast` is close to `React`, but differs in a couple of cases.
|
|
76250
76252
|
*
|
|
@@ -76274,7 +76276,7 @@ const hastToReact = {
|
|
|
76274
76276
|
xmlnsXLink: 'xmlnsXlink'
|
|
76275
76277
|
}
|
|
76276
76278
|
|
|
76277
|
-
;//
|
|
76279
|
+
;// ./node_modules/space-separated-tokens/index.js
|
|
76278
76280
|
/**
|
|
76279
76281
|
* Parse space-separated tokens to an array of strings.
|
|
76280
76282
|
*
|
|
@@ -76303,12 +76305,12 @@ function space_separated_tokens_stringify(values) {
|
|
|
76303
76305
|
// EXTERNAL MODULE: ./node_modules/style-to-object/index.js
|
|
76304
76306
|
var style_to_object = __webpack_require__(9108);
|
|
76305
76307
|
var style_to_object_default = /*#__PURE__*/__webpack_require__.n(style_to_object);
|
|
76306
|
-
;//
|
|
76308
|
+
;// ./node_modules/style-to-object/index.mjs
|
|
76307
76309
|
|
|
76308
76310
|
|
|
76309
76311
|
/* harmony default export */ const node_modules_style_to_object = ((style_to_object_default()));
|
|
76310
76312
|
|
|
76311
|
-
;//
|
|
76313
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/element.js
|
|
76312
76314
|
/**
|
|
76313
76315
|
* @typedef {import('estree').Property} Property
|
|
76314
76316
|
*
|
|
@@ -76645,7 +76647,7 @@ function toDash($0) {
|
|
|
76645
76647
|
return '-' + $0.toLowerCase()
|
|
76646
76648
|
}
|
|
76647
76649
|
|
|
76648
|
-
;//
|
|
76650
|
+
;// ./node_modules/estree-util-attach-comments/lib/index.js
|
|
76649
76651
|
/**
|
|
76650
76652
|
* @typedef {import('estree').Comment} Comment
|
|
76651
76653
|
* @typedef {import('estree').Node} Nodes
|
|
@@ -76845,7 +76847,7 @@ function compare(left, right, compareEnd) {
|
|
|
76845
76847
|
return Number.NaN
|
|
76846
76848
|
}
|
|
76847
76849
|
|
|
76848
|
-
;//
|
|
76850
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-expression.js
|
|
76849
76851
|
/**
|
|
76850
76852
|
* @typedef {import('estree').Expression} Expression
|
|
76851
76853
|
*
|
|
@@ -76897,7 +76899,7 @@ function mdx_expression_mdxExpression(node, state) {
|
|
|
76897
76899
|
return result
|
|
76898
76900
|
}
|
|
76899
76901
|
|
|
76900
|
-
;//
|
|
76902
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdx-jsx-element.js
|
|
76901
76903
|
/**
|
|
76902
76904
|
* @typedef {import('estree').Expression} Expression
|
|
76903
76905
|
*
|
|
@@ -77063,7 +77065,7 @@ function mdxJsxElement(node, state) {
|
|
|
77063
77065
|
return result
|
|
77064
77066
|
}
|
|
77065
77067
|
|
|
77066
|
-
;//
|
|
77068
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/mdxjs-esm.js
|
|
77067
77069
|
/**
|
|
77068
77070
|
* @typedef {import('mdast-util-mdxjs-esm').MdxjsEsmHast} MdxjsEsm
|
|
77069
77071
|
*
|
|
@@ -77093,7 +77095,7 @@ function mdxjs_esm_mdxjsEsm(node, state) {
|
|
|
77093
77095
|
}
|
|
77094
77096
|
}
|
|
77095
77097
|
|
|
77096
|
-
;//
|
|
77098
|
+
;// ./node_modules/hast-util-whitespace/lib/index.js
|
|
77097
77099
|
/**
|
|
77098
77100
|
* @typedef {import('hast').Nodes} Nodes
|
|
77099
77101
|
*/
|
|
@@ -77129,7 +77131,7 @@ function lib_empty(value) {
|
|
|
77129
77131
|
return value.replace(re, '') === ''
|
|
77130
77132
|
}
|
|
77131
77133
|
|
|
77132
|
-
;//
|
|
77134
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/root.js
|
|
77133
77135
|
/**
|
|
77134
77136
|
* @typedef {import('estree-jsx').JSXFragment} JsxFragment
|
|
77135
77137
|
*
|
|
@@ -77190,7 +77192,7 @@ function handlers_root_root(node, state) {
|
|
|
77190
77192
|
return result
|
|
77191
77193
|
}
|
|
77192
77194
|
|
|
77193
|
-
;//
|
|
77195
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/text.js
|
|
77194
77196
|
/**
|
|
77195
77197
|
* @typedef {import('estree').Literal} Literal
|
|
77196
77198
|
*
|
|
@@ -77228,7 +77230,7 @@ function lib_handlers_text_text(node, state) {
|
|
|
77228
77230
|
}
|
|
77229
77231
|
}
|
|
77230
77232
|
|
|
77231
|
-
;//
|
|
77233
|
+
;// ./node_modules/hast-util-to-estree/lib/handlers/index.js
|
|
77232
77234
|
|
|
77233
77235
|
|
|
77234
77236
|
|
|
@@ -77258,7 +77260,7 @@ const handlers = {
|
|
|
77258
77260
|
*/
|
|
77259
77261
|
function handlers_ignore() {}
|
|
77260
77262
|
|
|
77261
|
-
;//
|
|
77263
|
+
;// ./node_modules/hast-util-to-estree/lib/state.js
|
|
77262
77264
|
/**
|
|
77263
77265
|
* @typedef {import('estree').Comment} Comment
|
|
77264
77266
|
* @typedef {import('estree').Directive} Directive
|
|
@@ -77626,7 +77628,7 @@ function createJsxNameFromString(name) {
|
|
|
77626
77628
|
return {type: 'JSXIdentifier', name}
|
|
77627
77629
|
}
|
|
77628
77630
|
|
|
77629
|
-
;//
|
|
77631
|
+
;// ./node_modules/hast-util-to-estree/lib/index.js
|
|
77630
77632
|
/**
|
|
77631
77633
|
* Register MDX nodes in tree:
|
|
77632
77634
|
*
|
|
@@ -77730,7 +77732,7 @@ function toEstree(tree, options) {
|
|
|
77730
77732
|
return program
|
|
77731
77733
|
}
|
|
77732
77734
|
|
|
77733
|
-
;//
|
|
77735
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-recma.js
|
|
77734
77736
|
/**
|
|
77735
77737
|
* @typedef {import('estree-jsx').Program} Program
|
|
77736
77738
|
*
|
|
@@ -77762,7 +77764,7 @@ function rehypeRecma(options) {
|
|
|
77762
77764
|
}
|
|
77763
77765
|
}
|
|
77764
77766
|
|
|
77765
|
-
;//
|
|
77767
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/rehype-remove-raw.js
|
|
77766
77768
|
/**
|
|
77767
77769
|
* @typedef {import('hast').Root} Root
|
|
77768
77770
|
*/
|
|
@@ -77795,7 +77797,7 @@ function rehypeRemoveRaw() {
|
|
|
77795
77797
|
}
|
|
77796
77798
|
}
|
|
77797
77799
|
|
|
77798
|
-
;//
|
|
77800
|
+
;// ./node_modules/collapse-white-space/index.js
|
|
77799
77801
|
/**
|
|
77800
77802
|
* @typedef {'html'|'js'} Style
|
|
77801
77803
|
*
|
|
@@ -77883,7 +77885,7 @@ function trimFactory(replace) {
|
|
|
77883
77885
|
}
|
|
77884
77886
|
}
|
|
77885
77887
|
|
|
77886
|
-
;//
|
|
77888
|
+
;// ./node_modules/@mdx-js/mdx/lib/plugin/remark-mark-and-unravel.js
|
|
77887
77889
|
/**
|
|
77888
77890
|
* @typedef {import('mdast').Root} Root
|
|
77889
77891
|
* @typedef {import('mdast').RootContent} RootContent
|
|
@@ -77982,7 +77984,7 @@ function remarkMarkAndUnravel() {
|
|
|
77982
77984
|
}
|
|
77983
77985
|
}
|
|
77984
77986
|
|
|
77985
|
-
;//
|
|
77987
|
+
;// ./node_modules/@mdx-js/mdx/lib/node-types.js
|
|
77986
77988
|
/**
|
|
77987
77989
|
* List of node types made by `mdast-util-mdx`, which have to be passed
|
|
77988
77990
|
* through untouched from the mdast tree to the hast tree.
|
|
@@ -77995,7 +77997,7 @@ const nodeTypes = /** @type {const} */ ([
|
|
|
77995
77997
|
'mdxjsEsm'
|
|
77996
77998
|
])
|
|
77997
77999
|
|
|
77998
|
-
;//
|
|
78000
|
+
;// ./node_modules/@mdx-js/mdx/lib/core.js
|
|
77999
78001
|
/**
|
|
78000
78002
|
* @typedef {import('estree-jsx').Program} Program
|
|
78001
78003
|
* @typedef {import('hast-util-to-estree').ElementAttributeNameCase} ElementAttributeNameCase
|
|
@@ -78231,7 +78233,7 @@ function core_createProcessor(options) {
|
|
|
78231
78233
|
return pipeline
|
|
78232
78234
|
}
|
|
78233
78235
|
|
|
78234
|
-
;//
|
|
78236
|
+
;// ./node_modules/@mdx-js/mdx/lib/compile.js
|
|
78235
78237
|
/**
|
|
78236
78238
|
* @typedef {import('vfile').VFile} VFile
|
|
78237
78239
|
* @typedef {import('vfile').Compatible} Compatible
|
|
@@ -78291,7 +78293,7 @@ function compileSync(vfileCompatible, compileOptions) {
|
|
|
78291
78293
|
return core_createProcessor(options).processSync(file)
|
|
78292
78294
|
}
|
|
78293
78295
|
|
|
78294
|
-
;//
|
|
78296
|
+
;// ./node_modules/estree-util-value-to-estree/node_modules/is-plain-obj/index.js
|
|
78295
78297
|
function is_plain_obj_isPlainObject(value) {
|
|
78296
78298
|
if (typeof value !== 'object' || value === null) {
|
|
78297
78299
|
return false;
|
|
@@ -78301,7 +78303,7 @@ function is_plain_obj_isPlainObject(value) {
|
|
|
78301
78303
|
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
78302
78304
|
}
|
|
78303
78305
|
|
|
78304
|
-
;//
|
|
78306
|
+
;// ./node_modules/estree-util-value-to-estree/dist/estree-util-value-to-estree.js
|
|
78305
78307
|
|
|
78306
78308
|
/**
|
|
78307
78309
|
* Create an ESTree identifier node for a given name.
|
|
@@ -78812,7 +78814,7 @@ function valueToEstree(value, options = {}) {
|
|
|
78812
78814
|
};
|
|
78813
78815
|
}
|
|
78814
78816
|
//# sourceMappingURL=estree-util-value-to-estree.js.map
|
|
78815
|
-
;//
|
|
78817
|
+
;// ./node_modules/hast-util-parse-selector/lib/index.js
|
|
78816
78818
|
/**
|
|
78817
78819
|
* @typedef {import('hast').Element} Element
|
|
78818
78820
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -78901,7 +78903,7 @@ function parseSelector(selector, defaultTagName) {
|
|
|
78901
78903
|
}
|
|
78902
78904
|
}
|
|
78903
78905
|
|
|
78904
|
-
;//
|
|
78906
|
+
;// ./node_modules/hastscript/lib/create-h.js
|
|
78905
78907
|
/**
|
|
78906
78908
|
* @typedef {import('hast').Element} Element
|
|
78907
78909
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -79260,7 +79262,7 @@ function createAdjustMap(values) {
|
|
|
79260
79262
|
return result
|
|
79261
79263
|
}
|
|
79262
79264
|
|
|
79263
|
-
;//
|
|
79265
|
+
;// ./node_modules/hastscript/lib/svg-case-sensitive-tag-names.js
|
|
79264
79266
|
const svgCaseSensitiveTagNames = [
|
|
79265
79267
|
'altGlyph',
|
|
79266
79268
|
'altGlyphDef',
|
|
@@ -79303,7 +79305,7 @@ const svgCaseSensitiveTagNames = [
|
|
|
79303
79305
|
'textPath'
|
|
79304
79306
|
]
|
|
79305
79307
|
|
|
79306
|
-
;//
|
|
79308
|
+
;// ./node_modules/hastscript/lib/index.js
|
|
79307
79309
|
/**
|
|
79308
79310
|
* @typedef {import('./create-h.js').Child} Child
|
|
79309
79311
|
* Acceptable child value.
|
|
@@ -79341,7 +79343,7 @@ const h = createH(property_information_html, 'div')
|
|
|
79341
79343
|
/** @type {ReturnType<createH>} */
|
|
79342
79344
|
const s = createH(property_information_svg, 'g', svgCaseSensitiveTagNames)
|
|
79343
79345
|
|
|
79344
|
-
;//
|
|
79346
|
+
;// ./processor/plugin/toc.ts
|
|
79345
79347
|
|
|
79346
79348
|
|
|
79347
79349
|
|
|
@@ -79416,7 +79418,7 @@ const tocToMdx = (toc, components) => {
|
|
|
79416
79418
|
return lib_mdx(tocHast, { hast: true });
|
|
79417
79419
|
};
|
|
79418
79420
|
|
|
79419
|
-
;//
|
|
79421
|
+
;// ./errors/mdx-syntax-error.ts
|
|
79420
79422
|
class MdxSyntaxError extends SyntaxError {
|
|
79421
79423
|
constructor(error, doc) {
|
|
79422
79424
|
const { message, line, column, url } = error;
|
|
@@ -79436,7 +79438,7 @@ class MdxSyntaxError extends SyntaxError {
|
|
|
79436
79438
|
}
|
|
79437
79439
|
}
|
|
79438
79440
|
|
|
79439
|
-
;//
|
|
79441
|
+
;// ./lib/compile.ts
|
|
79440
79442
|
var compile_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
79441
79443
|
var t = {};
|
|
79442
79444
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -79474,7 +79476,7 @@ const compile_compile = (text, _a = {}) => {
|
|
|
79474
79476
|
};
|
|
79475
79477
|
/* harmony default export */ const lib_compile = (compile_compile);
|
|
79476
79478
|
|
|
79477
|
-
;//
|
|
79479
|
+
;// ./lib/hast.ts
|
|
79478
79480
|
|
|
79479
79481
|
|
|
79480
79482
|
|
|
@@ -79489,7 +79491,196 @@ const hast = (text, opts = {}) => {
|
|
|
79489
79491
|
};
|
|
79490
79492
|
/* harmony default export */ const lib_hast = (hast);
|
|
79491
79493
|
|
|
79492
|
-
;//
|
|
79494
|
+
;// external "@readme/markdown-legacy"
|
|
79495
|
+
const markdown_legacy_namespaceObject = require("@readme/markdown-legacy");
|
|
79496
|
+
;// ./processor/migration/emphasis.ts
|
|
79497
|
+
|
|
79498
|
+
const emphasis_strongTest = (node) => ['emphasis', 'strong'].includes(node.type);
|
|
79499
|
+
const addSpaceBefore = (index, parent) => {
|
|
79500
|
+
if (!(index > 0 && parent.children[index - 1]))
|
|
79501
|
+
return;
|
|
79502
|
+
const prev = parent.children[index - 1];
|
|
79503
|
+
// @ts-ignore - I think this is also a dependency versioning issue
|
|
79504
|
+
if (!('value' in prev) || prev.value.endsWith(' ') || prev.type === 'escape')
|
|
79505
|
+
return;
|
|
79506
|
+
parent.children.splice(index, 0, { type: 'text', value: ' ' });
|
|
79507
|
+
};
|
|
79508
|
+
const addSpaceAfter = (index, parent) => {
|
|
79509
|
+
if (!(index < parent.children.length - 1 && parent.children[index + 1]))
|
|
79510
|
+
return;
|
|
79511
|
+
const nextChild = parent.children[index + 1];
|
|
79512
|
+
if (!('value' in nextChild) || nextChild.value.startsWith(' '))
|
|
79513
|
+
return;
|
|
79514
|
+
parent.children.splice(index + 1, 0, { type: 'text', value: ' ' });
|
|
79515
|
+
};
|
|
79516
|
+
const trimEmphasis = (node, index, parent) => {
|
|
79517
|
+
let trimmed = false;
|
|
79518
|
+
visit(node, 'text', (child) => {
|
|
79519
|
+
const newValue = child.value.trimStart();
|
|
79520
|
+
if (newValue !== child.value) {
|
|
79521
|
+
trimmed = true;
|
|
79522
|
+
child.value = newValue;
|
|
79523
|
+
}
|
|
79524
|
+
return EXIT;
|
|
79525
|
+
});
|
|
79526
|
+
visit(node, 'text', (child) => {
|
|
79527
|
+
const newValue = child.value.trimEnd();
|
|
79528
|
+
if (newValue !== child.value) {
|
|
79529
|
+
trimmed = true;
|
|
79530
|
+
child.value = newValue;
|
|
79531
|
+
}
|
|
79532
|
+
return EXIT;
|
|
79533
|
+
}, true);
|
|
79534
|
+
if (trimmed) {
|
|
79535
|
+
addSpaceBefore(index, parent);
|
|
79536
|
+
addSpaceAfter(index, parent);
|
|
79537
|
+
}
|
|
79538
|
+
};
|
|
79539
|
+
const emphasisTransfomer = () => (tree) => {
|
|
79540
|
+
visit(tree, emphasis_strongTest, trimEmphasis);
|
|
79541
|
+
return tree;
|
|
79542
|
+
};
|
|
79543
|
+
/* harmony default export */ const migration_emphasis = (emphasisTransfomer);
|
|
79544
|
+
|
|
79545
|
+
;// ./processor/migration/images.ts
|
|
79546
|
+
|
|
79547
|
+
const images_imageTransformer = () => tree => {
|
|
79548
|
+
visit(tree, 'image', (image) => {
|
|
79549
|
+
var _a, _b;
|
|
79550
|
+
if (((_b = (_a = image.data) === null || _a === void 0 ? void 0 : _a.hProperties) === null || _b === void 0 ? void 0 : _b.className) === 'border') {
|
|
79551
|
+
image.data.hProperties.border = true;
|
|
79552
|
+
}
|
|
79553
|
+
});
|
|
79554
|
+
};
|
|
79555
|
+
/* harmony default export */ const migration_images = (images_imageTransformer);
|
|
79556
|
+
|
|
79557
|
+
;// ./processor/migration/linkReference.ts
|
|
79558
|
+
|
|
79559
|
+
const linkReferenceTransformer = () => (tree) => {
|
|
79560
|
+
visit(tree, 'linkReference', (node, index, parent) => {
|
|
79561
|
+
const definitions = {};
|
|
79562
|
+
visit(tree, 'definition', (def) => {
|
|
79563
|
+
definitions[def.identifier] = def;
|
|
79564
|
+
});
|
|
79565
|
+
if (node.label === node.identifier && parent) {
|
|
79566
|
+
if (!(node.identifier in definitions)) {
|
|
79567
|
+
parent.children[index] = {
|
|
79568
|
+
type: 'text',
|
|
79569
|
+
value: `[${node.label}]`,
|
|
79570
|
+
position: node.position,
|
|
79571
|
+
};
|
|
79572
|
+
}
|
|
79573
|
+
}
|
|
79574
|
+
});
|
|
79575
|
+
return tree;
|
|
79576
|
+
};
|
|
79577
|
+
/* harmony default export */ const migration_linkReference = (linkReferenceTransformer);
|
|
79578
|
+
|
|
79579
|
+
;// ./processor/migration/table-cell.ts
|
|
79580
|
+
|
|
79581
|
+
|
|
79582
|
+
const magicIndex = (i, j) => `${i === 0 ? 'h' : `${i - 1}`}-${j}`;
|
|
79583
|
+
const isInlineHtml = node => node.type === 'html' && !node.block;
|
|
79584
|
+
// @note: This regex is detect malformed lists that were created by the
|
|
79585
|
+
// markdown editor. Consider the following markdown:
|
|
79586
|
+
//
|
|
79587
|
+
// ```
|
|
79588
|
+
// * item 1
|
|
79589
|
+
// * item 2
|
|
79590
|
+
// * item 3
|
|
79591
|
+
// ```
|
|
79592
|
+
//
|
|
79593
|
+
// This is a perfectly valid list. But when you put that text into a table
|
|
79594
|
+
// cell, the editor does **bad** things. After a save and load cycle, it gets
|
|
79595
|
+
// converted to this:
|
|
79596
|
+
//
|
|
79597
|
+
// ```
|
|
79598
|
+
// \_ item 1
|
|
79599
|
+
// \_ item 2
|
|
79600
|
+
// \* item 3
|
|
79601
|
+
// ```
|
|
79602
|
+
//
|
|
79603
|
+
// The following regex attempts to detect this pattern, and we'll convert it to
|
|
79604
|
+
// something more standard.
|
|
79605
|
+
const psuedoListRegex = /^(?![ \t]*([*_]+).*\1[ \t]*$)(?<ws>[ \t]*)\\?([*_])\s*(?<item>.*)$/gm;
|
|
79606
|
+
const migrateTableCells = (vfile) => (table) => {
|
|
79607
|
+
let json;
|
|
79608
|
+
try {
|
|
79609
|
+
const { position } = table;
|
|
79610
|
+
if (position) {
|
|
79611
|
+
json = JSON.parse(vfile
|
|
79612
|
+
.toString()
|
|
79613
|
+
.slice(position.start.offset, position.end.offset)
|
|
79614
|
+
.replace(/.*\[block:parameters\](.*)\[\/block\].*/s, '$1'));
|
|
79615
|
+
}
|
|
79616
|
+
}
|
|
79617
|
+
catch (err) {
|
|
79618
|
+
/**
|
|
79619
|
+
* This failure case is already handled by the following logic. Plus,
|
|
79620
|
+
* because it's being handled internally, there's no way for our
|
|
79621
|
+
* migration script to catch the error or keep track of it, and it just
|
|
79622
|
+
* ends up blowing up the output logs.
|
|
79623
|
+
*/
|
|
79624
|
+
// console.error(err);
|
|
79625
|
+
}
|
|
79626
|
+
visit(table, 'tableRow', (row, i) => {
|
|
79627
|
+
visit(row, 'tableCell', (cell, j) => {
|
|
79628
|
+
let children = cell.children;
|
|
79629
|
+
if (json && json.data[magicIndex(i, j)]) {
|
|
79630
|
+
const string = json.data[magicIndex(i, j)].replace(psuedoListRegex, '$<ws>- $<item>');
|
|
79631
|
+
children = markdown_legacy_namespaceObject.mdast(string).children;
|
|
79632
|
+
}
|
|
79633
|
+
cell.children =
|
|
79634
|
+
children.length > 1 && !children.some(isInlineHtml)
|
|
79635
|
+
? children
|
|
79636
|
+
: [{ type: 'paragraph', children }];
|
|
79637
|
+
return SKIP;
|
|
79638
|
+
});
|
|
79639
|
+
return SKIP;
|
|
79640
|
+
});
|
|
79641
|
+
visit(table, 'inlineCode', (code) => {
|
|
79642
|
+
if (code.value.includes('\n')) {
|
|
79643
|
+
// eslint-disable-next-line no-param-reassign
|
|
79644
|
+
code.type = 'code';
|
|
79645
|
+
}
|
|
79646
|
+
});
|
|
79647
|
+
};
|
|
79648
|
+
const tableCellTransformer = () => (tree, vfile) => {
|
|
79649
|
+
visit(tree, 'table', migrateTableCells(vfile));
|
|
79650
|
+
return tree;
|
|
79651
|
+
};
|
|
79652
|
+
/* harmony default export */ const table_cell = (tableCellTransformer);
|
|
79653
|
+
|
|
79654
|
+
;// ./processor/migration/index.ts
|
|
79655
|
+
|
|
79656
|
+
|
|
79657
|
+
|
|
79658
|
+
|
|
79659
|
+
const transformers = [
|
|
79660
|
+
migration_emphasis,
|
|
79661
|
+
migration_images,
|
|
79662
|
+
migration_linkReference,
|
|
79663
|
+
table_cell,
|
|
79664
|
+
];
|
|
79665
|
+
/* harmony default export */ const migration = (transformers);
|
|
79666
|
+
|
|
79667
|
+
;// ./lib/mdastV6.ts
|
|
79668
|
+
|
|
79669
|
+
|
|
79670
|
+
const migrationNormalize = (doc) => {
|
|
79671
|
+
return doc.replaceAll(/^(<!--.*?)\\-->$/gms, '$1-->');
|
|
79672
|
+
};
|
|
79673
|
+
const mdastV6 = (doc) => {
|
|
79674
|
+
const [_normalizedDoc] = markdown_legacy_namespaceObject.setup(doc);
|
|
79675
|
+
const normalizedDoc = migrationNormalize(_normalizedDoc);
|
|
79676
|
+
const proc = markdown_legacy_namespaceObject.processor().use(migration);
|
|
79677
|
+
const tree = proc.parse(normalizedDoc);
|
|
79678
|
+
proc.runSync(tree, normalizedDoc);
|
|
79679
|
+
return tree;
|
|
79680
|
+
};
|
|
79681
|
+
/* harmony default export */ const lib_mdastV6 = (mdastV6);
|
|
79682
|
+
|
|
79683
|
+
;// ./node_modules/hast-util-is-element/lib/index.js
|
|
79493
79684
|
/**
|
|
79494
79685
|
* @typedef {import('hast').Element} Element
|
|
79495
79686
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -79769,7 +79960,7 @@ function looksLikeAnElement(value) {
|
|
|
79769
79960
|
)
|
|
79770
79961
|
}
|
|
79771
79962
|
|
|
79772
|
-
;//
|
|
79963
|
+
;// ./node_modules/hast-util-embedded/lib/index.js
|
|
79773
79964
|
|
|
79774
79965
|
|
|
79775
79966
|
/**
|
|
@@ -79804,7 +79995,7 @@ const embedded = convertElement(
|
|
|
79804
79995
|
}
|
|
79805
79996
|
)
|
|
79806
79997
|
|
|
79807
|
-
;//
|
|
79998
|
+
;// ./node_modules/rehype-minify-whitespace/lib/block.js
|
|
79808
79999
|
// See: <https://html.spec.whatwg.org/#the-css-user-agent-style-sheet-and-presentational-hints>
|
|
79809
80000
|
const block_blocks = [
|
|
79810
80001
|
'address', // Flow content.
|
|
@@ -79867,7 +80058,7 @@ const block_blocks = [
|
|
|
79867
80058
|
'xmp' // Flow content, legacy
|
|
79868
80059
|
]
|
|
79869
80060
|
|
|
79870
|
-
;//
|
|
80061
|
+
;// ./node_modules/rehype-minify-whitespace/lib/content.js
|
|
79871
80062
|
const lib_content_content = [
|
|
79872
80063
|
// Form.
|
|
79873
80064
|
'button',
|
|
@@ -79876,7 +80067,7 @@ const lib_content_content = [
|
|
|
79876
80067
|
'textarea'
|
|
79877
80068
|
]
|
|
79878
80069
|
|
|
79879
|
-
;//
|
|
80070
|
+
;// ./node_modules/rehype-minify-whitespace/lib/skippable.js
|
|
79880
80071
|
const skippable = [
|
|
79881
80072
|
'area',
|
|
79882
80073
|
'base',
|
|
@@ -79898,7 +80089,7 @@ const skippable = [
|
|
|
79898
80089
|
'title'
|
|
79899
80090
|
]
|
|
79900
80091
|
|
|
79901
|
-
;//
|
|
80092
|
+
;// ./node_modules/rehype-minify-whitespace/lib/index.js
|
|
79902
80093
|
/**
|
|
79903
80094
|
* @typedef {import('hast').Nodes} Nodes
|
|
79904
80095
|
* @typedef {import('hast').Parents} Parents
|
|
@@ -80284,7 +80475,7 @@ function inferWhiteSpace(node, state) {
|
|
|
80284
80475
|
return state.whitespace
|
|
80285
80476
|
}
|
|
80286
80477
|
|
|
80287
|
-
;//
|
|
80478
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/a.js
|
|
80288
80479
|
/**
|
|
80289
80480
|
* @typedef {import('hast').Element} Element
|
|
80290
80481
|
*
|
|
@@ -80322,7 +80513,7 @@ function a(state, node) {
|
|
|
80322
80513
|
return result
|
|
80323
80514
|
}
|
|
80324
80515
|
|
|
80325
|
-
;//
|
|
80516
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/base.js
|
|
80326
80517
|
/**
|
|
80327
80518
|
* @typedef {import('hast').Element} Element
|
|
80328
80519
|
*
|
|
@@ -80348,7 +80539,7 @@ function base(state, node) {
|
|
|
80348
80539
|
}
|
|
80349
80540
|
}
|
|
80350
80541
|
|
|
80351
|
-
;//
|
|
80542
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/blockquote.js
|
|
80352
80543
|
/**
|
|
80353
80544
|
* @typedef {import('hast').Element} Element
|
|
80354
80545
|
*
|
|
@@ -80375,7 +80566,7 @@ function handlers_blockquote_blockquote(state, node) {
|
|
|
80375
80566
|
return result
|
|
80376
80567
|
}
|
|
80377
80568
|
|
|
80378
|
-
;//
|
|
80569
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/br.js
|
|
80379
80570
|
/**
|
|
80380
80571
|
* @typedef {import('hast').Element} Element
|
|
80381
80572
|
*
|
|
@@ -80402,7 +80593,7 @@ function br(state, node) {
|
|
|
80402
80593
|
return result
|
|
80403
80594
|
}
|
|
80404
80595
|
|
|
80405
|
-
;//
|
|
80596
|
+
;// ./node_modules/unist-util-find-after/lib/index.js
|
|
80406
80597
|
/**
|
|
80407
80598
|
* @typedef {import('unist').Node} UnistNode
|
|
80408
80599
|
* @typedef {import('unist').Parent} UnistParent
|
|
@@ -80534,7 +80725,7 @@ const findAfter =
|
|
|
80534
80725
|
}
|
|
80535
80726
|
)
|
|
80536
80727
|
|
|
80537
|
-
;//
|
|
80728
|
+
;// ./node_modules/hast-util-to-text/lib/index.js
|
|
80538
80729
|
/**
|
|
80539
80730
|
* @typedef {import('hast').Comment} Comment
|
|
80540
80731
|
* @typedef {import('hast').Element} Element
|
|
@@ -81169,7 +81360,7 @@ function closedDialog(node) {
|
|
|
81169
81360
|
return node.tagName === 'dialog' && !(node.properties || {}).open
|
|
81170
81361
|
}
|
|
81171
81362
|
|
|
81172
|
-
;//
|
|
81363
|
+
;// ./node_modules/trim-trailing-lines/index.js
|
|
81173
81364
|
/**
|
|
81174
81365
|
* Remove final line endings from `value`
|
|
81175
81366
|
*
|
|
@@ -81194,7 +81385,7 @@ function trimTrailingLines(value) {
|
|
|
81194
81385
|
return input.slice(0, end)
|
|
81195
81386
|
}
|
|
81196
81387
|
|
|
81197
|
-
;//
|
|
81388
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/code.js
|
|
81198
81389
|
/**
|
|
81199
81390
|
* @typedef {import('hast').Element} Element
|
|
81200
81391
|
*
|
|
@@ -81263,7 +81454,7 @@ function handlers_code_code(state, node) {
|
|
|
81263
81454
|
return result
|
|
81264
81455
|
}
|
|
81265
81456
|
|
|
81266
|
-
;//
|
|
81457
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/comment.js
|
|
81267
81458
|
/**
|
|
81268
81459
|
* @typedef {import('hast').Comment} Comment
|
|
81269
81460
|
*
|
|
@@ -81293,7 +81484,7 @@ function comment_comment(state, node) {
|
|
|
81293
81484
|
return result
|
|
81294
81485
|
}
|
|
81295
81486
|
|
|
81296
|
-
;//
|
|
81487
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/del.js
|
|
81297
81488
|
/**
|
|
81298
81489
|
* @typedef {import('hast').Element} Element
|
|
81299
81490
|
*
|
|
@@ -81324,7 +81515,7 @@ function del(state, node) {
|
|
|
81324
81515
|
return result
|
|
81325
81516
|
}
|
|
81326
81517
|
|
|
81327
|
-
;//
|
|
81518
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/list-items-spread.js
|
|
81328
81519
|
/**
|
|
81329
81520
|
* @typedef {import('mdast').ListContent} ListContent
|
|
81330
81521
|
*/
|
|
@@ -81354,7 +81545,7 @@ function listItemsSpread(children) {
|
|
|
81354
81545
|
return false
|
|
81355
81546
|
}
|
|
81356
81547
|
|
|
81357
|
-
;//
|
|
81548
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/dl.js
|
|
81358
81549
|
/**
|
|
81359
81550
|
* @typedef {import('hast').Element} Element
|
|
81360
81551
|
* @typedef {import('hast').ElementContent} ElementContent
|
|
@@ -81508,7 +81699,7 @@ function dl_create() {
|
|
|
81508
81699
|
return {type: 'listItem', spread: false, checked: null, children: []}
|
|
81509
81700
|
}
|
|
81510
81701
|
|
|
81511
|
-
;//
|
|
81702
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/em.js
|
|
81512
81703
|
/**
|
|
81513
81704
|
* @typedef {import('hast').Element} Element
|
|
81514
81705
|
*
|
|
@@ -81540,7 +81731,7 @@ function em(state, node) {
|
|
|
81540
81731
|
return result
|
|
81541
81732
|
}
|
|
81542
81733
|
|
|
81543
|
-
;//
|
|
81734
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/heading.js
|
|
81544
81735
|
/**
|
|
81545
81736
|
* @typedef {import('hast').Element} Element
|
|
81546
81737
|
*
|
|
@@ -81574,7 +81765,7 @@ function handlers_heading_heading(state, node) {
|
|
|
81574
81765
|
return result
|
|
81575
81766
|
}
|
|
81576
81767
|
|
|
81577
|
-
;//
|
|
81768
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/hr.js
|
|
81578
81769
|
/**
|
|
81579
81770
|
* @typedef {import('hast').Element} Element
|
|
81580
81771
|
*
|
|
@@ -81601,7 +81792,7 @@ function hr(state, node) {
|
|
|
81601
81792
|
return result
|
|
81602
81793
|
}
|
|
81603
81794
|
|
|
81604
|
-
;//
|
|
81795
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/iframe.js
|
|
81605
81796
|
/**
|
|
81606
81797
|
* @typedef {import('hast').Element} Element
|
|
81607
81798
|
*
|
|
@@ -81643,7 +81834,7 @@ function iframe(state, node) {
|
|
|
81643
81834
|
}
|
|
81644
81835
|
}
|
|
81645
81836
|
|
|
81646
|
-
;//
|
|
81837
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/img.js
|
|
81647
81838
|
/**
|
|
81648
81839
|
* @typedef {import('hast').Element} Element
|
|
81649
81840
|
*
|
|
@@ -81677,7 +81868,7 @@ function img(state, node) {
|
|
|
81677
81868
|
return result
|
|
81678
81869
|
}
|
|
81679
81870
|
|
|
81680
|
-
;//
|
|
81871
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/inline-code.js
|
|
81681
81872
|
/**
|
|
81682
81873
|
* @typedef {import('hast').Element} Element
|
|
81683
81874
|
*
|
|
@@ -81703,7 +81894,7 @@ function handlers_inline_code_inlineCode(state, node) {
|
|
|
81703
81894
|
return result
|
|
81704
81895
|
}
|
|
81705
81896
|
|
|
81706
|
-
;//
|
|
81897
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/find-selected-options.js
|
|
81707
81898
|
/**
|
|
81708
81899
|
* @typedef {import('hast').Element} Element
|
|
81709
81900
|
* @typedef {import('hast').Properties} Properties
|
|
@@ -81798,7 +81989,7 @@ function findOptions(node) {
|
|
|
81798
81989
|
return results
|
|
81799
81990
|
}
|
|
81800
81991
|
|
|
81801
|
-
;//
|
|
81992
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/input.js
|
|
81802
81993
|
/**
|
|
81803
81994
|
* @typedef {import('hast').Element} Element
|
|
81804
81995
|
*
|
|
@@ -81941,7 +82132,7 @@ function input(state, node) {
|
|
|
81941
82132
|
return result
|
|
81942
82133
|
}
|
|
81943
82134
|
|
|
81944
|
-
;//
|
|
82135
|
+
;// ./node_modules/hast-util-has-property/lib/index.js
|
|
81945
82136
|
/**
|
|
81946
82137
|
* @typedef {import('hast').Element} Element
|
|
81947
82138
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -81972,7 +82163,7 @@ function hasProperty(node, name) {
|
|
|
81972
82163
|
return value !== null && value !== undefined && value !== false
|
|
81973
82164
|
}
|
|
81974
82165
|
|
|
81975
|
-
;//
|
|
82166
|
+
;// ./node_modules/hast-util-is-body-ok-link/lib/index.js
|
|
81976
82167
|
/**
|
|
81977
82168
|
* @typedef {import('hast').Nodes} Nodes
|
|
81978
82169
|
*/
|
|
@@ -82012,7 +82203,7 @@ function isBodyOkLink(node) {
|
|
|
82012
82203
|
return true
|
|
82013
82204
|
}
|
|
82014
82205
|
|
|
82015
|
-
;//
|
|
82206
|
+
;// ./node_modules/hast-util-phrasing/lib/index.js
|
|
82016
82207
|
/**
|
|
82017
82208
|
* @typedef {import('hast').Nodes} Nodes
|
|
82018
82209
|
*/
|
|
@@ -82092,7 +82283,7 @@ function lib_phrasing(value) {
|
|
|
82092
82283
|
)
|
|
82093
82284
|
}
|
|
82094
82285
|
|
|
82095
|
-
;//
|
|
82286
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/li.js
|
|
82096
82287
|
/**
|
|
82097
82288
|
* @typedef {import('hast').Element} Element
|
|
82098
82289
|
*
|
|
@@ -82243,7 +82434,7 @@ function extractLeadingCheckbox(node) {
|
|
|
82243
82434
|
return {checkbox: undefined, rest: node}
|
|
82244
82435
|
}
|
|
82245
82436
|
|
|
82246
|
-
;//
|
|
82437
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/list.js
|
|
82247
82438
|
/**
|
|
82248
82439
|
* @typedef {import('hast').Element} Element
|
|
82249
82440
|
*
|
|
@@ -82296,7 +82487,7 @@ function list_create() {
|
|
|
82296
82487
|
return {type: 'listItem', spread: false, checked: null, children: []}
|
|
82297
82488
|
}
|
|
82298
82489
|
|
|
82299
|
-
;//
|
|
82490
|
+
;// ./node_modules/hast-util-to-mdast/lib/util/wrap.js
|
|
82300
82491
|
/**
|
|
82301
82492
|
* @typedef {import('mdast').BlockContent} BlockContent
|
|
82302
82493
|
* @typedef {import('mdast').Delete} Delete
|
|
@@ -82519,7 +82710,7 @@ function cloneWithoutChildren(node) {
|
|
|
82519
82710
|
return esm({...node, children: []})
|
|
82520
82711
|
}
|
|
82521
82712
|
|
|
82522
|
-
;//
|
|
82713
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/media.js
|
|
82523
82714
|
/**
|
|
82524
82715
|
* @typedef {import('hast').Element} Element
|
|
82525
82716
|
*
|
|
@@ -82609,7 +82800,7 @@ function media(state, node) {
|
|
|
82609
82800
|
return result
|
|
82610
82801
|
}
|
|
82611
82802
|
|
|
82612
|
-
;//
|
|
82803
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/p.js
|
|
82613
82804
|
/**
|
|
82614
82805
|
* @typedef {import('hast').Element} Element
|
|
82615
82806
|
*
|
|
@@ -82643,7 +82834,7 @@ function p_p(state, node) {
|
|
|
82643
82834
|
}
|
|
82644
82835
|
}
|
|
82645
82836
|
|
|
82646
|
-
;//
|
|
82837
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/q.js
|
|
82647
82838
|
/**
|
|
82648
82839
|
* @typedef {import('hast').Element} Element
|
|
82649
82840
|
*
|
|
@@ -82690,7 +82881,7 @@ function q(state, node) {
|
|
|
82690
82881
|
return contents
|
|
82691
82882
|
}
|
|
82692
82883
|
|
|
82693
|
-
;//
|
|
82884
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/root.js
|
|
82694
82885
|
/**
|
|
82695
82886
|
* @typedef {import('hast').Root} HastRoot
|
|
82696
82887
|
*
|
|
@@ -82722,7 +82913,7 @@ function lib_handlers_root_root(state, node) {
|
|
|
82722
82913
|
return result
|
|
82723
82914
|
}
|
|
82724
82915
|
|
|
82725
|
-
;//
|
|
82916
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/select.js
|
|
82726
82917
|
/**
|
|
82727
82918
|
* @typedef {import('hast').Element} Element
|
|
82728
82919
|
*
|
|
@@ -82760,7 +82951,7 @@ function select_select(state, node) {
|
|
|
82760
82951
|
}
|
|
82761
82952
|
}
|
|
82762
82953
|
|
|
82763
|
-
;//
|
|
82954
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/strong.js
|
|
82764
82955
|
/**
|
|
82765
82956
|
* @typedef {import('hast').Element} Element
|
|
82766
82957
|
*
|
|
@@ -82792,7 +82983,7 @@ function handlers_strong_strong(state, node) {
|
|
|
82792
82983
|
return result
|
|
82793
82984
|
}
|
|
82794
82985
|
|
|
82795
|
-
;//
|
|
82986
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table-cell.js
|
|
82796
82987
|
/**
|
|
82797
82988
|
* @typedef {import('hast').Element} Element
|
|
82798
82989
|
*
|
|
@@ -82838,7 +83029,7 @@ function table_cell_tableCell(state, node) {
|
|
|
82838
83029
|
return result
|
|
82839
83030
|
}
|
|
82840
83031
|
|
|
82841
|
-
;//
|
|
83032
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table-row.js
|
|
82842
83033
|
/**
|
|
82843
83034
|
* @typedef {import('hast').Element} Element
|
|
82844
83035
|
*
|
|
@@ -82875,7 +83066,7 @@ function table_row_create() {
|
|
|
82875
83066
|
return {type: 'tableCell', children: []}
|
|
82876
83067
|
}
|
|
82877
83068
|
|
|
82878
|
-
;//
|
|
83069
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/table.js
|
|
82879
83070
|
/**
|
|
82880
83071
|
* @typedef {import('hast').Element} Element
|
|
82881
83072
|
*
|
|
@@ -83084,7 +83275,7 @@ function createRow() {
|
|
|
83084
83275
|
return {type: 'tableRow', children: []}
|
|
83085
83276
|
}
|
|
83086
83277
|
|
|
83087
|
-
;//
|
|
83278
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/text.js
|
|
83088
83279
|
/**
|
|
83089
83280
|
* @typedef {import('hast').Text} HastText
|
|
83090
83281
|
*
|
|
@@ -83111,7 +83302,7 @@ function hast_util_to_mdast_lib_handlers_text_text(state, node) {
|
|
|
83111
83302
|
return result
|
|
83112
83303
|
}
|
|
83113
83304
|
|
|
83114
|
-
;//
|
|
83305
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/textarea.js
|
|
83115
83306
|
/**
|
|
83116
83307
|
* @typedef {import('hast').Element} Element
|
|
83117
83308
|
*
|
|
@@ -83137,7 +83328,7 @@ function textarea_textarea(state, node) {
|
|
|
83137
83328
|
return result
|
|
83138
83329
|
}
|
|
83139
83330
|
|
|
83140
|
-
;//
|
|
83331
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/wbr.js
|
|
83141
83332
|
/**
|
|
83142
83333
|
* @typedef {import('hast').Element} Element
|
|
83143
83334
|
*
|
|
@@ -83164,7 +83355,7 @@ function wbr(state, node) {
|
|
|
83164
83355
|
return result
|
|
83165
83356
|
}
|
|
83166
83357
|
|
|
83167
|
-
;//
|
|
83358
|
+
;// ./node_modules/hast-util-to-mdast/lib/handlers/index.js
|
|
83168
83359
|
/**
|
|
83169
83360
|
* @typedef {import('hast').Parents} Parents
|
|
83170
83361
|
*
|
|
@@ -83400,7 +83591,7 @@ function handlers_flow(state, node) {
|
|
|
83400
83591
|
*/
|
|
83401
83592
|
function lib_handlers_ignore() {}
|
|
83402
83593
|
|
|
83403
|
-
;//
|
|
83594
|
+
;// ./node_modules/hast-util-to-mdast/lib/state.js
|
|
83404
83595
|
/**
|
|
83405
83596
|
* @typedef {import('hast').Element} Element
|
|
83406
83597
|
* @typedef {import('hast').Nodes} Nodes
|
|
@@ -83805,7 +83996,7 @@ function toSpecificContent(nodes, build) {
|
|
|
83805
83996
|
}
|
|
83806
83997
|
}
|
|
83807
83998
|
|
|
83808
|
-
;//
|
|
83999
|
+
;// ./node_modules/hast-util-to-mdast/lib/index.js
|
|
83809
84000
|
/**
|
|
83810
84001
|
* @typedef {import('hast').Nodes} Nodes
|
|
83811
84002
|
*
|
|
@@ -83921,7 +84112,7 @@ function toMdast(tree, options) {
|
|
|
83921
84112
|
return mdast
|
|
83922
84113
|
}
|
|
83923
84114
|
|
|
83924
|
-
;//
|
|
84115
|
+
;// ./node_modules/rehype-remark/lib/index.js
|
|
83925
84116
|
/**
|
|
83926
84117
|
* @typedef {import('hast').Root} HastRoot
|
|
83927
84118
|
* @typedef {import('hast-util-to-mdast').Options} Options
|
|
@@ -84009,7 +84200,7 @@ function rehypeRemark(destination, options) {
|
|
|
84009
84200
|
}
|
|
84010
84201
|
}
|
|
84011
84202
|
|
|
84012
|
-
;//
|
|
84203
|
+
;// ./processor/compile/callout.ts
|
|
84013
84204
|
|
|
84014
84205
|
const callout = (node, _, state, info) => {
|
|
84015
84206
|
const exit = state.enter(NodeTypes.callout);
|
|
@@ -84029,7 +84220,7 @@ const callout = (node, _, state, info) => {
|
|
|
84029
84220
|
};
|
|
84030
84221
|
/* harmony default export */ const compile_callout = (callout);
|
|
84031
84222
|
|
|
84032
|
-
;//
|
|
84223
|
+
;// ./processor/compile/code-tabs.ts
|
|
84033
84224
|
|
|
84034
84225
|
const codeTabs = (node, _, state, info) => {
|
|
84035
84226
|
const exit = state.enter(NodeTypes.codeTabs);
|
|
@@ -84042,7 +84233,7 @@ const codeTabs = (node, _, state, info) => {
|
|
|
84042
84233
|
};
|
|
84043
84234
|
/* harmony default export */ const compile_code_tabs = (codeTabs);
|
|
84044
84235
|
|
|
84045
|
-
;//
|
|
84236
|
+
;// ./processor/compile/embed.ts
|
|
84046
84237
|
|
|
84047
84238
|
const embed_embed = (node) => {
|
|
84048
84239
|
const attributes = formatHProps(node);
|
|
@@ -84055,11 +84246,11 @@ const embed_embed = (node) => {
|
|
|
84055
84246
|
};
|
|
84056
84247
|
/* harmony default export */ const compile_embed = (embed_embed);
|
|
84057
84248
|
|
|
84058
|
-
;//
|
|
84249
|
+
;// ./processor/compile/gemoji.ts
|
|
84059
84250
|
const gemoji_gemoji = (node) => `:${node.name}:`;
|
|
84060
84251
|
/* harmony default export */ const compile_gemoji = (gemoji_gemoji);
|
|
84061
84252
|
|
|
84062
|
-
;//
|
|
84253
|
+
;// ./processor/compile/html-block.ts
|
|
84063
84254
|
|
|
84064
84255
|
const htmlBlock = (node) => {
|
|
84065
84256
|
const { runScripts, html } = getHProps(node);
|
|
@@ -84069,7 +84260,7 @@ ${reformatHTML(html)}
|
|
|
84069
84260
|
};
|
|
84070
84261
|
/* harmony default export */ const html_block = (htmlBlock);
|
|
84071
84262
|
|
|
84072
|
-
;//
|
|
84263
|
+
;// ./processor/compile/compatibility.ts
|
|
84073
84264
|
var compatibility_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
84074
84265
|
var t = {};
|
|
84075
84266
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -84140,7 +84331,7 @@ const compatibility = (node) => {
|
|
|
84140
84331
|
};
|
|
84141
84332
|
/* harmony default export */ const compile_compatibility = (compatibility);
|
|
84142
84333
|
|
|
84143
|
-
;//
|
|
84334
|
+
;// ./processor/compile/variable.ts
|
|
84144
84335
|
const variable = (node) => {
|
|
84145
84336
|
// @note: coming from RDMD, it's set as `variable`. But when mdx is parsed,
|
|
84146
84337
|
// it's set as `name`
|
|
@@ -84149,7 +84340,7 @@ const variable = (node) => {
|
|
|
84149
84340
|
};
|
|
84150
84341
|
/* harmony default export */ const compile_variable = (variable);
|
|
84151
84342
|
|
|
84152
|
-
;//
|
|
84343
|
+
;// ./processor/compile/index.ts
|
|
84153
84344
|
|
|
84154
84345
|
|
|
84155
84346
|
|
|
@@ -84181,7 +84372,7 @@ function compilers() {
|
|
|
84181
84372
|
}
|
|
84182
84373
|
/* harmony default export */ const processor_compile = (compilers);
|
|
84183
84374
|
|
|
84184
|
-
;//
|
|
84375
|
+
;// ./lib/mdx.ts
|
|
84185
84376
|
var mdx_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
84186
84377
|
var t = {};
|
|
84187
84378
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -84216,7 +84407,7 @@ const mdx_mdx = (tree, _a = {}) => {
|
|
|
84216
84407
|
};
|
|
84217
84408
|
/* harmony default export */ const lib_mdx = (mdx_mdx);
|
|
84218
84409
|
|
|
84219
|
-
;//
|
|
84410
|
+
;// ./lib/plain.ts
|
|
84220
84411
|
|
|
84221
84412
|
const STRIP_TAGS = ['script', 'style'];
|
|
84222
84413
|
function plain_one(node, opts) {
|
|
@@ -84274,7 +84465,7 @@ const plain = (node, opts = {}) => {
|
|
|
84274
84465
|
// EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
|
|
84275
84466
|
var jsx_runtime = __webpack_require__(4848);
|
|
84276
84467
|
var jsx_runtime_namespaceObject = /*#__PURE__*/__webpack_require__.t(jsx_runtime, 2);
|
|
84277
|
-
;//
|
|
84468
|
+
;// ./node_modules/@mdx-js/mdx/lib/run.js
|
|
84278
84469
|
/**
|
|
84279
84470
|
* @typedef {import('mdx/types.js').MDXModule} MDXModule
|
|
84280
84471
|
*
|
|
@@ -84324,7 +84515,7 @@ function runSync(code, options) {
|
|
|
84324
84515
|
// EXTERNAL MODULE: ./node_modules/@readme/variable/dist/index.js
|
|
84325
84516
|
var dist = __webpack_require__(4355);
|
|
84326
84517
|
var dist_default = /*#__PURE__*/__webpack_require__.n(dist);
|
|
84327
|
-
;//
|
|
84518
|
+
;// ./contexts/index.tsx
|
|
84328
84519
|
|
|
84329
84520
|
|
|
84330
84521
|
|
|
@@ -84339,7 +84530,7 @@ const Contexts = ({ children, terms = [], variables = { user: {}, defaults: [] }
|
|
|
84339
84530
|
};
|
|
84340
84531
|
/* harmony default export */ const contexts = (Contexts);
|
|
84341
84532
|
|
|
84342
|
-
;//
|
|
84533
|
+
;// ./lib/run.tsx
|
|
84343
84534
|
var run_rest = (undefined && undefined.__rest) || function (s, e) {
|
|
84344
84535
|
var t = {};
|
|
84345
84536
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
@@ -84388,7 +84579,7 @@ const run_run = async (string, _opts = {}) => {
|
|
|
84388
84579
|
};
|
|
84389
84580
|
/* harmony default export */ const lib_run = (run_run);
|
|
84390
84581
|
|
|
84391
|
-
;//
|
|
84582
|
+
;// ./lib/tags.ts
|
|
84392
84583
|
|
|
84393
84584
|
|
|
84394
84585
|
|
|
@@ -84403,7 +84594,16 @@ const tags = (doc) => {
|
|
|
84403
84594
|
};
|
|
84404
84595
|
/* harmony default export */ const lib_tags = (tags);
|
|
84405
84596
|
|
|
84406
|
-
;//
|
|
84597
|
+
;// ./lib/migrate.ts
|
|
84598
|
+
|
|
84599
|
+
|
|
84600
|
+
const migrate = (doc) => {
|
|
84601
|
+
return lib_mdx(lib_mdastV6(doc)).replaceAll(/ /g, ' ');
|
|
84602
|
+
};
|
|
84603
|
+
/* harmony default export */ const lib_migrate = (migrate);
|
|
84604
|
+
|
|
84605
|
+
;// ./lib/index.ts
|
|
84606
|
+
|
|
84407
84607
|
|
|
84408
84608
|
|
|
84409
84609
|
|
|
@@ -84414,7 +84614,7 @@ const tags = (doc) => {
|
|
|
84414
84614
|
|
|
84415
84615
|
|
|
84416
84616
|
|
|
84417
|
-
;//
|
|
84617
|
+
;// ./index.tsx
|
|
84418
84618
|
|
|
84419
84619
|
|
|
84420
84620
|
|