@player-ui/markdown-plugin 0.13.0 → 0.14.0-next.1
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.
|
@@ -45,6 +45,10 @@ function _async_to_generator(fn) {
|
|
|
45
45
|
});
|
|
46
46
|
};
|
|
47
47
|
}
|
|
48
|
+
function _call_super(_this, derived, args) {
|
|
49
|
+
derived = _get_prototype_of(derived);
|
|
50
|
+
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
51
|
+
}
|
|
48
52
|
function _class_call_check(instance, Constructor) {
|
|
49
53
|
if (!(instance instanceof Constructor)) {
|
|
50
54
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -283,31 +287,15 @@ function _wrap_native_super(Class) {
|
|
|
283
287
|
return _wrap_native_super(Class);
|
|
284
288
|
}
|
|
285
289
|
function _is_native_reflect_construct() {
|
|
286
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
287
|
-
if (Reflect.construct.sham) return false;
|
|
288
|
-
if (typeof Proxy === "function") return true;
|
|
289
290
|
try {
|
|
290
|
-
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
return
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
function _create_super(Derived) {
|
|
297
|
-
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
298
|
-
return function _createSuperInternal() {
|
|
299
|
-
var Super = _get_prototype_of(Derived), result;
|
|
300
|
-
if (hasNativeReflectConstruct) {
|
|
301
|
-
var NewTarget = _get_prototype_of(this).constructor;
|
|
302
|
-
result = Reflect.construct(Super, arguments, NewTarget);
|
|
303
|
-
} else {
|
|
304
|
-
result = Super.apply(this, arguments);
|
|
305
|
-
}
|
|
306
|
-
return _possible_constructor_return(this, result);
|
|
307
|
-
};
|
|
291
|
+
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
292
|
+
} catch (_) {}
|
|
293
|
+
return (_is_native_reflect_construct = function() {
|
|
294
|
+
return !!result;
|
|
295
|
+
})();
|
|
308
296
|
}
|
|
309
297
|
function _ts_generator(thisArg, body) {
|
|
310
|
-
var f, y, t,
|
|
298
|
+
var f, y, t, _ = {
|
|
311
299
|
label: 0,
|
|
312
300
|
sent: function() {
|
|
313
301
|
if (t[0] & 1) throw t[1];
|
|
@@ -315,12 +303,8 @@ function _ts_generator(thisArg, body) {
|
|
|
315
303
|
},
|
|
316
304
|
trys: [],
|
|
317
305
|
ops: []
|
|
318
|
-
};
|
|
319
|
-
return g = {
|
|
320
|
-
next: verb(0),
|
|
321
|
-
"throw": verb(1),
|
|
322
|
-
"return": verb(2)
|
|
323
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
306
|
+
}, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype);
|
|
307
|
+
return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
324
308
|
return this;
|
|
325
309
|
}), g;
|
|
326
310
|
function verb(n) {
|
|
@@ -333,7 +317,7 @@ function _ts_generator(thisArg, body) {
|
|
|
333
317
|
}
|
|
334
318
|
function step(op) {
|
|
335
319
|
if (f) throw new TypeError("Generator is already executing.");
|
|
336
|
-
while(_)try {
|
|
320
|
+
while(g && (g = 0, op[0] && (_ = 0)), _)try {
|
|
337
321
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
338
322
|
if (y = 0, t) op = [
|
|
339
323
|
op[0] & 2,
|
|
@@ -505,7 +489,7 @@ var MarkdownPlugin = function() {
|
|
|
505
489
|
};
|
|
506
490
|
var findInArray = function findInArray(array, key, value) {
|
|
507
491
|
return array.findIndex(function(obj) {
|
|
508
|
-
if (obj && typeof obj === "object") {
|
|
492
|
+
if (obj && (typeof obj === "undefined" ? "undefined" : _type_of(obj)) === "object") {
|
|
509
493
|
return obj[key] == value;
|
|
510
494
|
}
|
|
511
495
|
return false;
|
|
@@ -599,7 +583,7 @@ var MarkdownPlugin = function() {
|
|
|
599
583
|
};
|
|
600
584
|
};
|
|
601
585
|
var isExpressionNode = function isExpressionNode(x) {
|
|
602
|
-
return typeof x === "object" && x !== null && !Array.isArray(x) && x.__id === ExpNodeOpaqueIdentifier;
|
|
586
|
+
return (typeof x === "undefined" ? "undefined" : _type_of(x)) === "object" && x !== null && !Array.isArray(x) && x.__id === ExpNodeOpaqueIdentifier;
|
|
603
587
|
};
|
|
604
588
|
var throwError = function throwError(message, index2) {
|
|
605
589
|
var err = new Error("".concat(message, " at character ").concat(index2));
|
|
@@ -1187,7 +1171,7 @@ var MarkdownPlugin = function() {
|
|
|
1187
1171
|
var isPromiseLike = function isPromiseLike(value) {
|
|
1188
1172
|
var // Check for standard Promise constructor name
|
|
1189
1173
|
_value_constructor;
|
|
1190
|
-
return value != null && typeof value === "object" && typeof value.then === "function" && // Additional safeguards against false positives
|
|
1174
|
+
return value != null && (typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && typeof value.then === "function" && // Additional safeguards against false positives
|
|
1191
1175
|
(_instanceof(value, Promise) || ((_value_constructor = value.constructor) === null || _value_constructor === void 0 ? void 0 : _value_constructor.name) === "Promise" || // Verify it has other Promise-like methods to reduce false positives
|
|
1192
1176
|
typeof value.catch === "function" && typeof value.finally === "function");
|
|
1193
1177
|
};
|
|
@@ -1202,7 +1186,7 @@ var MarkdownPlugin = function() {
|
|
|
1202
1186
|
if (isExpressionNode(expr)) {
|
|
1203
1187
|
return false;
|
|
1204
1188
|
}
|
|
1205
|
-
return typeof expr === "object" && expr !== null && !Array.isArray(expr) && "value" in expr;
|
|
1189
|
+
return (typeof expr === "undefined" ? "undefined" : _type_of(expr)) === "object" && expr !== null && !Array.isArray(expr) && "value" in expr;
|
|
1206
1190
|
};
|
|
1207
1191
|
var makePromiseAwareBinaryOp = function makePromiseAwareBinaryOp(operation) {
|
|
1208
1192
|
return function(a, b, async) {
|
|
@@ -1419,7 +1403,7 @@ var MarkdownPlugin = function() {
|
|
|
1419
1403
|
if (!node2) {
|
|
1420
1404
|
return;
|
|
1421
1405
|
}
|
|
1422
|
-
if ("value" in node2 &&
|
|
1406
|
+
if ("value" in node2 && _type_of(node2.value) === "object" && typeof ((_node2_value = node2.value) === null || _node2_value === void 0 ? void 0 : _node2_value.id) === "string") {
|
|
1423
1407
|
return node2.value.id;
|
|
1424
1408
|
}
|
|
1425
1409
|
};
|
|
@@ -1454,22 +1438,6 @@ var MarkdownPlugin = function() {
|
|
|
1454
1438
|
}
|
|
1455
1439
|
});
|
|
1456
1440
|
};
|
|
1457
|
-
var unpackNode = function unpackNode(item) {
|
|
1458
|
-
var _item_children_, _item_children, _item_children_1, _item_children1;
|
|
1459
|
-
var unpacked = [];
|
|
1460
|
-
if ("children" in item && ((_item_children = item.children) === null || _item_children === void 0 ? void 0 : (_item_children_ = _item_children[0]) === null || _item_children_ === void 0 ? void 0 : _item_children_.value.type) === "asset" && ((_item_children1 = item.children) === null || _item_children1 === void 0 ? void 0 : (_item_children_1 = _item_children1[0]) === null || _item_children_1 === void 0 ? void 0 : _item_children_1.value).children) {
|
|
1461
|
-
var _item_children__value_children_, _item_children__value_children, _item_children_2, _item_children2;
|
|
1462
|
-
if (((_item_children__value_children = ((_item_children2 = item.children) === null || _item_children2 === void 0 ? void 0 : (_item_children_2 = _item_children2[0]) === null || _item_children_2 === void 0 ? void 0 : _item_children_2.value).children) === null || _item_children__value_children === void 0 ? void 0 : (_item_children__value_children_ = _item_children__value_children[0]) === null || _item_children__value_children_ === void 0 ? void 0 : _item_children__value_children_.value.type) === "multi-node") {
|
|
1463
|
-
var _item_children__value_children_1, _item_children__value_children1, _item_children_3, _item_children3;
|
|
1464
|
-
((_item_children__value_children1 = ((_item_children3 = item.children) === null || _item_children3 === void 0 ? void 0 : (_item_children_3 = _item_children3[0]) === null || _item_children_3 === void 0 ? void 0 : _item_children_3.value).children) === null || _item_children__value_children1 === void 0 ? void 0 : (_item_children__value_children_1 = _item_children__value_children1[0]) === null || _item_children__value_children_1 === void 0 ? void 0 : _item_children__value_children_1.value).values.forEach(function(value) {
|
|
1465
|
-
unpacked.push(value);
|
|
1466
|
-
});
|
|
1467
|
-
}
|
|
1468
|
-
} else {
|
|
1469
|
-
unpacked.push(item);
|
|
1470
|
-
}
|
|
1471
|
-
return unpacked;
|
|
1472
|
-
};
|
|
1473
1441
|
var hasSomethingToResolve = function hasSomethingToResolve(str) {
|
|
1474
1442
|
return bindingResolveLookup(str) || expressionResolveLookup(str);
|
|
1475
1443
|
};
|
|
@@ -1559,12 +1527,12 @@ var MarkdownPlugin = function() {
|
|
|
1559
1527
|
return result.join("");
|
|
1560
1528
|
};
|
|
1561
1529
|
var node = function node(value) {
|
|
1562
|
-
return Boolean(value && typeof value === "object");
|
|
1530
|
+
return Boolean(value && (typeof value === "undefined" ? "undefined" : _type_of(value)) === "object");
|
|
1563
1531
|
};
|
|
1564
1532
|
var decodeNamedCharacterReference = function decodeNamedCharacterReference(value) {
|
|
1565
1533
|
return own.call(characterEntities, value) ? characterEntities[value] : false;
|
|
1566
1534
|
};
|
|
1567
|
-
var splice = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-chunked@2.0.
|
|
1535
|
+
var splice = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js
|
|
1568
1536
|
function splice(list2, start, remove, items) {
|
|
1569
1537
|
var end = list2.length;
|
|
1570
1538
|
var chunkStart = 0;
|
|
@@ -1608,8 +1576,7 @@ var MarkdownPlugin = function() {
|
|
|
1608
1576
|
return all2;
|
|
1609
1577
|
};
|
|
1610
1578
|
var syntaxExtension = function syntaxExtension(all2, extension2) {
|
|
1611
|
-
var
|
|
1612
|
-
for(hook in extension2){
|
|
1579
|
+
var _loop = function() {
|
|
1613
1580
|
var maybe = hasOwnProperty.call(all2, hook) ? all2[hook] : void 0;
|
|
1614
1581
|
var left = maybe || (all2[hook] = {});
|
|
1615
1582
|
var right = extension2[hook];
|
|
@@ -1624,7 +1591,9 @@ var MarkdownPlugin = function() {
|
|
|
1624
1591
|
] : []);
|
|
1625
1592
|
}
|
|
1626
1593
|
}
|
|
1627
|
-
}
|
|
1594
|
+
};
|
|
1595
|
+
var hook;
|
|
1596
|
+
for(hook in extension2)_loop();
|
|
1628
1597
|
};
|
|
1629
1598
|
var constructs = function constructs(existing, list2) {
|
|
1630
1599
|
var index2 = -1;
|
|
@@ -1635,7 +1604,7 @@ var MarkdownPlugin = function() {
|
|
|
1635
1604
|
}
|
|
1636
1605
|
splice(existing, 0, 0, before);
|
|
1637
1606
|
};
|
|
1638
|
-
var decodeNumericCharacterReference = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-numeric-character-reference@2.0.
|
|
1607
|
+
var decodeNumericCharacterReference = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js
|
|
1639
1608
|
function decodeNumericCharacterReference(value, base) {
|
|
1640
1609
|
var code = Number.parseInt(value, base);
|
|
1641
1610
|
if (// C0 except for HT, LF, FF, CR, space.
|
|
@@ -1648,7 +1617,7 @@ var MarkdownPlugin = function() {
|
|
|
1648
1617
|
}
|
|
1649
1618
|
return String.fromCodePoint(code);
|
|
1650
1619
|
};
|
|
1651
|
-
var normalizeIdentifier = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-normalize-identifier@2.0.
|
|
1620
|
+
var normalizeIdentifier = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js
|
|
1652
1621
|
function normalizeIdentifier(value) {
|
|
1653
1622
|
return value.replace(/[\t\n\r ]+/g, " ").replace(/^ | $/g, "").toLowerCase().toUpperCase();
|
|
1654
1623
|
};
|
|
@@ -1672,7 +1641,7 @@ var MarkdownPlugin = function() {
|
|
|
1672
1641
|
return code !== null && code > -1 && regex.test(String.fromCharCode(code));
|
|
1673
1642
|
}
|
|
1674
1643
|
};
|
|
1675
|
-
var factorySpace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-space@2.0.
|
|
1644
|
+
var factorySpace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js
|
|
1676
1645
|
function factorySpace(effects, ok, type, max) {
|
|
1677
1646
|
var limit = max ? max - 1 : Number.POSITIVE_INFINITY;
|
|
1678
1647
|
var size = 0;
|
|
@@ -1773,7 +1742,7 @@ var MarkdownPlugin = function() {
|
|
|
1773
1742
|
exitContainers(continued);
|
|
1774
1743
|
var index2 = indexBeforeExits;
|
|
1775
1744
|
while(index2 < self.events.length){
|
|
1776
|
-
self.events[index2][1].end =
|
|
1745
|
+
self.events[index2][1].end = _object_spread({}, point3);
|
|
1777
1746
|
index2++;
|
|
1778
1747
|
}
|
|
1779
1748
|
splice(self.events, indexBeforeFlow + 1, 0, self.events.slice(indexBeforeExits));
|
|
@@ -1826,9 +1795,9 @@ var MarkdownPlugin = function() {
|
|
|
1826
1795
|
}
|
|
1827
1796
|
childFlow = childFlow || self.parser.flow(self.now());
|
|
1828
1797
|
effects.enter("chunkFlow", {
|
|
1798
|
+
_tokenizer: childFlow,
|
|
1829
1799
|
contentType: "flow",
|
|
1830
|
-
previous: childToken
|
|
1831
|
-
_tokenizer: childFlow
|
|
1800
|
+
previous: childToken
|
|
1832
1801
|
});
|
|
1833
1802
|
return flowContinue(code);
|
|
1834
1803
|
}
|
|
@@ -1849,9 +1818,9 @@ var MarkdownPlugin = function() {
|
|
|
1849
1818
|
effects.consume(code);
|
|
1850
1819
|
return flowContinue;
|
|
1851
1820
|
}
|
|
1852
|
-
function writeToChild(token,
|
|
1821
|
+
function writeToChild(token, endOfFile) {
|
|
1853
1822
|
var stream = self.sliceStream(token);
|
|
1854
|
-
if (
|
|
1823
|
+
if (endOfFile) stream.push(null);
|
|
1855
1824
|
token.previous = childToken;
|
|
1856
1825
|
if (childToken) childToken.next = token;
|
|
1857
1826
|
childToken = token;
|
|
@@ -1883,7 +1852,7 @@ var MarkdownPlugin = function() {
|
|
|
1883
1852
|
exitContainers(continued);
|
|
1884
1853
|
index2 = indexBeforeExits;
|
|
1885
1854
|
while(index2 < self.events.length){
|
|
1886
|
-
self.events[index2][1].end =
|
|
1855
|
+
self.events[index2][1].end = _object_spread({}, point3);
|
|
1887
1856
|
index2++;
|
|
1888
1857
|
}
|
|
1889
1858
|
splice(self.events, indexBeforeFlow + 1, 0, self.events.slice(indexBeforeExits));
|
|
@@ -1911,25 +1880,16 @@ var MarkdownPlugin = function() {
|
|
|
1911
1880
|
var tokenizeContainer = function tokenizeContainer(effects, ok, nok) {
|
|
1912
1881
|
return factorySpace(effects, effects.attempt(this.parser.constructs.document, ok, nok), "linePrefix", this.parser.constructs.disable.null.includes("codeIndented") ? void 0 : 4);
|
|
1913
1882
|
};
|
|
1914
|
-
var markdownLineEndingOrSpace2 = function markdownLineEndingOrSpace2(code) {
|
|
1915
|
-
return code !== null && (code < 0 || code === 32);
|
|
1916
|
-
};
|
|
1917
|
-
var regexCheck2 = function regexCheck2(regex) {
|
|
1918
|
-
return check;
|
|
1919
|
-
function check(code) {
|
|
1920
|
-
return code !== null && code > -1 && regex.test(String.fromCharCode(code));
|
|
1921
|
-
}
|
|
1922
|
-
};
|
|
1923
1883
|
var classifyCharacter = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js
|
|
1924
1884
|
function classifyCharacter(code) {
|
|
1925
|
-
if (code === null ||
|
|
1885
|
+
if (code === null || markdownLineEndingOrSpace(code) || unicodeWhitespace(code)) {
|
|
1926
1886
|
return 1;
|
|
1927
1887
|
}
|
|
1928
|
-
if (
|
|
1888
|
+
if (unicodePunctuation(code)) {
|
|
1929
1889
|
return 2;
|
|
1930
1890
|
}
|
|
1931
1891
|
};
|
|
1932
|
-
var resolveAll = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-resolve-all@2.0.
|
|
1892
|
+
var resolveAll = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js
|
|
1933
1893
|
function resolveAll(constructs2, events, context) {
|
|
1934
1894
|
var called = [];
|
|
1935
1895
|
var index2 = -1;
|
|
@@ -1962,32 +1922,32 @@ var MarkdownPlugin = function() {
|
|
|
1962
1922
|
continue;
|
|
1963
1923
|
}
|
|
1964
1924
|
use = events[open][1].end.offset - events[open][1].start.offset > 1 && events[index2][1].end.offset - events[index2][1].start.offset > 1 ? 2 : 1;
|
|
1965
|
-
var start =
|
|
1966
|
-
var end =
|
|
1925
|
+
var start = _object_spread({}, events[open][1].end);
|
|
1926
|
+
var end = _object_spread({}, events[index2][1].start);
|
|
1967
1927
|
movePoint(start, -use);
|
|
1968
1928
|
movePoint(end, use);
|
|
1969
1929
|
openingSequence = {
|
|
1970
1930
|
type: use > 1 ? "strongSequence" : "emphasisSequence",
|
|
1971
1931
|
start: start,
|
|
1972
|
-
end:
|
|
1932
|
+
end: _object_spread({}, events[open][1].end)
|
|
1973
1933
|
};
|
|
1974
1934
|
closingSequence = {
|
|
1975
1935
|
type: use > 1 ? "strongSequence" : "emphasisSequence",
|
|
1976
|
-
start:
|
|
1936
|
+
start: _object_spread({}, events[index2][1].start),
|
|
1977
1937
|
end: end
|
|
1978
1938
|
};
|
|
1979
1939
|
text3 = {
|
|
1980
1940
|
type: use > 1 ? "strongText" : "emphasisText",
|
|
1981
|
-
start:
|
|
1982
|
-
end:
|
|
1941
|
+
start: _object_spread({}, events[open][1].end),
|
|
1942
|
+
end: _object_spread({}, events[index2][1].start)
|
|
1983
1943
|
};
|
|
1984
1944
|
group = {
|
|
1985
1945
|
type: use > 1 ? "strong" : "emphasis",
|
|
1986
|
-
start:
|
|
1987
|
-
end:
|
|
1946
|
+
start: _object_spread({}, openingSequence.start),
|
|
1947
|
+
end: _object_spread({}, closingSequence.end)
|
|
1988
1948
|
};
|
|
1989
|
-
events[open][1].end =
|
|
1990
|
-
events[index2][1].start =
|
|
1949
|
+
events[open][1].end = _object_spread({}, openingSequence.start);
|
|
1950
|
+
events[index2][1].start = _object_spread({}, closingSequence.end);
|
|
1991
1951
|
nextEvents = [];
|
|
1992
1952
|
if (events[open][1].end.offset - events[open][1].start.offset) {
|
|
1993
1953
|
nextEvents = push(nextEvents, [
|
|
@@ -2344,8 +2304,8 @@ var MarkdownPlugin = function() {
|
|
|
2344
2304
|
var tokenizeCodeFenced = function tokenizeCodeFenced(effects, ok, nok) {
|
|
2345
2305
|
var self = this;
|
|
2346
2306
|
var closeStart = {
|
|
2347
|
-
|
|
2348
|
-
|
|
2307
|
+
partial: true,
|
|
2308
|
+
tokenize: tokenizeCloseStart
|
|
2349
2309
|
};
|
|
2350
2310
|
var initialPrefix = 0;
|
|
2351
2311
|
var sizeOpen = 0;
|
|
@@ -2687,7 +2647,7 @@ var MarkdownPlugin = function() {
|
|
|
2687
2647
|
}
|
|
2688
2648
|
}
|
|
2689
2649
|
};
|
|
2690
|
-
var subtokenize = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.0
|
|
2650
|
+
var subtokenize = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js
|
|
2691
2651
|
function subtokenize(eventsArray) {
|
|
2692
2652
|
var jumps = {};
|
|
2693
2653
|
var index2 = -1;
|
|
@@ -2741,12 +2701,12 @@ var MarkdownPlugin = function() {
|
|
|
2741
2701
|
otherEvent[1].type = "lineEnding";
|
|
2742
2702
|
lineIndex = otherIndex;
|
|
2743
2703
|
}
|
|
2744
|
-
} else {
|
|
2704
|
+
} else if (otherEvent[1].type === "linePrefix" || otherEvent[1].type === "listItemIndent") {} else {
|
|
2745
2705
|
break;
|
|
2746
2706
|
}
|
|
2747
2707
|
}
|
|
2748
2708
|
if (lineIndex) {
|
|
2749
|
-
event[1].end =
|
|
2709
|
+
event[1].end = _object_spread({}, events.get(lineIndex)[1].start);
|
|
2750
2710
|
parameters = events.slice(lineIndex, index2);
|
|
2751
2711
|
parameters.unshift(event);
|
|
2752
2712
|
events.splice(lineIndex, index2 - lineIndex + 1, parameters);
|
|
@@ -2761,7 +2721,13 @@ var MarkdownPlugin = function() {
|
|
|
2761
2721
|
var context = events.get(eventIndex)[2];
|
|
2762
2722
|
var startPosition = eventIndex - 1;
|
|
2763
2723
|
var startPositions = [];
|
|
2764
|
-
var tokenizer = token._tokenizer
|
|
2724
|
+
var tokenizer = token._tokenizer;
|
|
2725
|
+
if (!tokenizer) {
|
|
2726
|
+
tokenizer = context.parser[token.contentType](token.start);
|
|
2727
|
+
if (token._contentTypeTextTrailing) {
|
|
2728
|
+
tokenizer._contentTypeTextTrailing = true;
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2765
2731
|
var childEvents = tokenizer.events;
|
|
2766
2732
|
var jumps = [];
|
|
2767
2733
|
var gaps = {};
|
|
@@ -2893,7 +2859,7 @@ var MarkdownPlugin = function() {
|
|
|
2893
2859
|
return effects.interrupt(self.parser.constructs.flow, nok, ok)(code);
|
|
2894
2860
|
}
|
|
2895
2861
|
};
|
|
2896
|
-
var factoryDestination = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-destination@2.0.
|
|
2862
|
+
var factoryDestination = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js
|
|
2897
2863
|
function factoryDestination(effects, ok, nok, type, literalType, literalMarkerType, rawType, stringType, max) {
|
|
2898
2864
|
var limit = max || Number.POSITIVE_INFINITY;
|
|
2899
2865
|
var balance = 0;
|
|
@@ -2984,7 +2950,7 @@ var MarkdownPlugin = function() {
|
|
|
2984
2950
|
return raw(code);
|
|
2985
2951
|
}
|
|
2986
2952
|
};
|
|
2987
|
-
var factoryLabel = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-label@2.0.
|
|
2953
|
+
var factoryLabel = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js
|
|
2988
2954
|
function factoryLabel(effects, ok, nok, type, markerType, stringType) {
|
|
2989
2955
|
var self = this;
|
|
2990
2956
|
var size = 0;
|
|
@@ -3043,7 +3009,7 @@ var MarkdownPlugin = function() {
|
|
|
3043
3009
|
return labelInside(code);
|
|
3044
3010
|
}
|
|
3045
3011
|
};
|
|
3046
|
-
var factoryTitle = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-title@2.0.
|
|
3012
|
+
var factoryTitle = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js
|
|
3047
3013
|
function factoryTitle(effects, ok, nok, type, markerType, stringType) {
|
|
3048
3014
|
var marker;
|
|
3049
3015
|
return start;
|
|
@@ -3104,7 +3070,7 @@ var MarkdownPlugin = function() {
|
|
|
3104
3070
|
return inside(code);
|
|
3105
3071
|
}
|
|
3106
3072
|
};
|
|
3107
|
-
var factoryWhitespace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-whitespace@2.0.
|
|
3073
|
+
var factoryWhitespace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js
|
|
3108
3074
|
function factoryWhitespace(effects, ok) {
|
|
3109
3075
|
var seen;
|
|
3110
3076
|
return start;
|
|
@@ -3966,14 +3932,19 @@ var MarkdownPlugin = function() {
|
|
|
3966
3932
|
};
|
|
3967
3933
|
var resolveAllLabelEnd = function resolveAllLabelEnd(events) {
|
|
3968
3934
|
var index2 = -1;
|
|
3935
|
+
var newEvents = [];
|
|
3969
3936
|
while(++index2 < events.length){
|
|
3970
3937
|
var token = events[index2][1];
|
|
3938
|
+
newEvents.push(events[index2]);
|
|
3971
3939
|
if (token.type === "labelImage" || token.type === "labelLink" || token.type === "labelEnd") {
|
|
3972
|
-
|
|
3940
|
+
var offset = token.type === "labelImage" ? 4 : 2;
|
|
3973
3941
|
token.type = "data";
|
|
3974
|
-
index2
|
|
3942
|
+
index2 += offset;
|
|
3975
3943
|
}
|
|
3976
3944
|
}
|
|
3945
|
+
if (events.length !== newEvents.length) {
|
|
3946
|
+
splice(events, 0, events.length, newEvents);
|
|
3947
|
+
}
|
|
3977
3948
|
return events;
|
|
3978
3949
|
};
|
|
3979
3950
|
var resolveToLabelEnd = function resolveToLabelEnd(events, context) {
|
|
@@ -4006,18 +3977,18 @@ var MarkdownPlugin = function() {
|
|
|
4006
3977
|
}
|
|
4007
3978
|
var group = {
|
|
4008
3979
|
type: events[open][1].type === "labelLink" ? "link" : "image",
|
|
4009
|
-
start:
|
|
4010
|
-
end:
|
|
3980
|
+
start: _object_spread({}, events[open][1].start),
|
|
3981
|
+
end: _object_spread({}, events[events.length - 1][1].end)
|
|
4011
3982
|
};
|
|
4012
3983
|
var label = {
|
|
4013
3984
|
type: "label",
|
|
4014
|
-
start:
|
|
4015
|
-
end:
|
|
3985
|
+
start: _object_spread({}, events[open][1].start),
|
|
3986
|
+
end: _object_spread({}, events[close][1].end)
|
|
4016
3987
|
};
|
|
4017
3988
|
var text3 = {
|
|
4018
3989
|
type: "labelText",
|
|
4019
|
-
start:
|
|
4020
|
-
end:
|
|
3990
|
+
start: _object_spread({}, events[open + offset + 2][1].end),
|
|
3991
|
+
end: _object_spread({}, events[close - 2][1].start)
|
|
4021
3992
|
};
|
|
4022
3993
|
media = [
|
|
4023
3994
|
[
|
|
@@ -4406,8 +4377,8 @@ var MarkdownPlugin = function() {
|
|
|
4406
4377
|
}
|
|
4407
4378
|
var heading = {
|
|
4408
4379
|
type: "setextHeading",
|
|
4409
|
-
start:
|
|
4410
|
-
end:
|
|
4380
|
+
start: _object_spread({}, events[content3][1].start),
|
|
4381
|
+
end: _object_spread({}, events[events.length - 1][1].end)
|
|
4411
4382
|
};
|
|
4412
4383
|
events[text3][1].type = "setextHeadingText";
|
|
4413
4384
|
if (definition2) {
|
|
@@ -4421,7 +4392,7 @@ var MarkdownPlugin = function() {
|
|
|
4421
4392
|
events[content3][1],
|
|
4422
4393
|
context
|
|
4423
4394
|
]);
|
|
4424
|
-
events[content3][1].end =
|
|
4395
|
+
events[content3][1].end = _object_spread({}, events[definition2][1].end);
|
|
4425
4396
|
} else {
|
|
4426
4397
|
events[content3][1] = heading;
|
|
4427
4398
|
}
|
|
@@ -4503,8 +4474,8 @@ var MarkdownPlugin = function() {
|
|
|
4503
4474
|
};
|
|
4504
4475
|
var initializeFactory = function initializeFactory(field) {
|
|
4505
4476
|
return {
|
|
4506
|
-
|
|
4507
|
-
|
|
4477
|
+
resolveAll: createResolver(field === "text" ? resolveAllLineSuffixes : void 0),
|
|
4478
|
+
tokenize: initializeText
|
|
4508
4479
|
};
|
|
4509
4480
|
function initializeText(effects) {
|
|
4510
4481
|
var self = this;
|
|
@@ -4600,19 +4571,22 @@ var MarkdownPlugin = function() {
|
|
|
4600
4571
|
break;
|
|
4601
4572
|
}
|
|
4602
4573
|
}
|
|
4574
|
+
if (context._contentTypeTextTrailing && eventIndex === events.length) {
|
|
4575
|
+
size = 0;
|
|
4576
|
+
}
|
|
4603
4577
|
if (size) {
|
|
4604
4578
|
var token = {
|
|
4605
4579
|
type: eventIndex === events.length || tabs || size < 2 ? "lineSuffix" : "hardBreakTrailing",
|
|
4606
4580
|
start: {
|
|
4581
|
+
_bufferIndex: index2 ? bufferIndex : data.start._bufferIndex + bufferIndex,
|
|
4582
|
+
_index: data.start._index + index2,
|
|
4607
4583
|
line: data.end.line,
|
|
4608
4584
|
column: data.end.column - size,
|
|
4609
|
-
offset: data.end.offset - size
|
|
4610
|
-
_index: data.start._index + index2,
|
|
4611
|
-
_bufferIndex: index2 ? bufferIndex : data.start._bufferIndex + bufferIndex
|
|
4585
|
+
offset: data.end.offset - size
|
|
4612
4586
|
},
|
|
4613
|
-
end:
|
|
4587
|
+
end: _object_spread({}, data.end)
|
|
4614
4588
|
};
|
|
4615
|
-
data.end =
|
|
4589
|
+
data.end = _object_spread({}, token.start);
|
|
4616
4590
|
if (data.start.offset === data.end.offset) {
|
|
4617
4591
|
Object.assign(data, token);
|
|
4618
4592
|
} else {
|
|
@@ -4633,41 +4607,40 @@ var MarkdownPlugin = function() {
|
|
|
4633
4607
|
}
|
|
4634
4608
|
return events;
|
|
4635
4609
|
};
|
|
4636
|
-
var createTokenizer = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
4610
|
+
var createTokenizer = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js
|
|
4637
4611
|
function createTokenizer(parser, initialize, from) {
|
|
4638
|
-
var point3 =
|
|
4639
|
-
|
|
4640
|
-
column: 1,
|
|
4641
|
-
offset: 0
|
|
4642
|
-
}, {
|
|
4612
|
+
var point3 = {
|
|
4613
|
+
_bufferIndex: -1,
|
|
4643
4614
|
_index: 0,
|
|
4644
|
-
|
|
4645
|
-
|
|
4615
|
+
line: from && from.line || 1,
|
|
4616
|
+
column: from && from.column || 1,
|
|
4617
|
+
offset: from && from.offset || 0
|
|
4618
|
+
};
|
|
4646
4619
|
var columnStart = {};
|
|
4647
4620
|
var resolveAllConstructs = [];
|
|
4648
4621
|
var chunks = [];
|
|
4649
4622
|
var stack = [];
|
|
4650
4623
|
var consumed = true;
|
|
4651
4624
|
var effects = {
|
|
4625
|
+
attempt: constructFactory(onsuccessfulconstruct),
|
|
4626
|
+
check: constructFactory(onsuccessfulcheck),
|
|
4652
4627
|
consume: consume,
|
|
4653
4628
|
enter: enter,
|
|
4654
4629
|
exit: exit2,
|
|
4655
|
-
attempt: constructFactory(onsuccessfulconstruct),
|
|
4656
|
-
check: constructFactory(onsuccessfulcheck),
|
|
4657
4630
|
interrupt: constructFactory(onsuccessfulcheck, {
|
|
4658
4631
|
interrupt: true
|
|
4659
4632
|
})
|
|
4660
4633
|
};
|
|
4661
4634
|
var context = {
|
|
4662
|
-
previous: null,
|
|
4663
4635
|
code: null,
|
|
4664
4636
|
containerState: {},
|
|
4637
|
+
defineSkip: defineSkip,
|
|
4665
4638
|
events: [],
|
|
4639
|
+
now: now,
|
|
4666
4640
|
parser: parser,
|
|
4667
|
-
|
|
4641
|
+
previous: null,
|
|
4668
4642
|
sliceSerialize: sliceSerialize,
|
|
4669
|
-
|
|
4670
|
-
defineSkip: defineSkip,
|
|
4643
|
+
sliceStream: sliceStream,
|
|
4671
4644
|
write: write
|
|
4672
4645
|
};
|
|
4673
4646
|
var state = initialize.tokenize.call(context, effects);
|
|
@@ -4693,13 +4666,13 @@ var MarkdownPlugin = function() {
|
|
|
4693
4666
|
return sliceChunks(chunks, token);
|
|
4694
4667
|
}
|
|
4695
4668
|
function now() {
|
|
4696
|
-
var
|
|
4669
|
+
var _bufferIndex = point3._bufferIndex, _index = point3._index, line = point3.line, column = point3.column, offset = point3.offset;
|
|
4697
4670
|
return {
|
|
4671
|
+
_bufferIndex: _bufferIndex,
|
|
4672
|
+
_index: _index,
|
|
4698
4673
|
line: line,
|
|
4699
4674
|
column: column,
|
|
4700
|
-
offset: offset
|
|
4701
|
-
_index: _index,
|
|
4702
|
-
_bufferIndex: _bufferIndex
|
|
4675
|
+
offset: offset
|
|
4703
4676
|
};
|
|
4704
4677
|
}
|
|
4705
4678
|
function defineSkip(value) {
|
|
@@ -4742,7 +4715,9 @@ var MarkdownPlugin = function() {
|
|
|
4742
4715
|
point3._index++;
|
|
4743
4716
|
} else {
|
|
4744
4717
|
point3._bufferIndex++;
|
|
4745
|
-
if (point3._bufferIndex ===
|
|
4718
|
+
if (point3._bufferIndex === // Points w/ non-negative `_bufferIndex` reference
|
|
4719
|
+
// strings.
|
|
4720
|
+
/** @type {string} */ chunks[point3._index].length) {
|
|
4746
4721
|
point3._bufferIndex = -1;
|
|
4747
4722
|
point3._index++;
|
|
4748
4723
|
}
|
|
@@ -4785,18 +4760,18 @@ var MarkdownPlugin = function() {
|
|
|
4785
4760
|
var constructIndex;
|
|
4786
4761
|
var currentConstruct;
|
|
4787
4762
|
var info;
|
|
4788
|
-
return Array.isArray(constructs2) ? handleListOfConstructs(constructs2) : "tokenize" in constructs2 ? //
|
|
4763
|
+
return Array.isArray(constructs2) ? /* c8 ignore next 1 */ handleListOfConstructs(constructs2) : "tokenize" in constructs2 ? // Looks like a construct.
|
|
4789
4764
|
handleListOfConstructs([
|
|
4790
|
-
constructs2
|
|
4765
|
+
/** @type {Construct} */ constructs2
|
|
4791
4766
|
]) : handleMapOfConstructs(constructs2);
|
|
4792
4767
|
function handleMapOfConstructs(map) {
|
|
4793
4768
|
return start;
|
|
4794
4769
|
function start(code) {
|
|
4795
|
-
var
|
|
4770
|
+
var left = code !== null && map[code];
|
|
4796
4771
|
var all2 = code !== null && map.null;
|
|
4797
4772
|
var list2 = // To do: add more extension tests.
|
|
4798
|
-
/* c8 ignore next 2 */ _to_consumable_array(Array.isArray(
|
|
4799
|
-
|
|
4773
|
+
/* c8 ignore next 2 */ _to_consumable_array(Array.isArray(left) ? left : left ? [
|
|
4774
|
+
left
|
|
4800
4775
|
] : []).concat(_to_consumable_array(Array.isArray(all2) ? all2 : all2 ? [
|
|
4801
4776
|
all2
|
|
4802
4777
|
] : []));
|
|
@@ -4861,8 +4836,8 @@ var MarkdownPlugin = function() {
|
|
|
4861
4836
|
var startEventsIndex = context.events.length;
|
|
4862
4837
|
var startStack = Array.from(stack);
|
|
4863
4838
|
return {
|
|
4864
|
-
|
|
4865
|
-
|
|
4839
|
+
from: startEventsIndex,
|
|
4840
|
+
restore: restore
|
|
4866
4841
|
};
|
|
4867
4842
|
function restore() {
|
|
4868
4843
|
point3 = startPoint;
|
|
@@ -4952,19 +4927,19 @@ var MarkdownPlugin = function() {
|
|
|
4952
4927
|
}
|
|
4953
4928
|
return result.join("");
|
|
4954
4929
|
};
|
|
4955
|
-
var parse3 = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
4930
|
+
var parse3 = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/parse.js
|
|
4956
4931
|
function parse3(options) {
|
|
4957
4932
|
var settings = options || {};
|
|
4958
4933
|
var constructs2 = /** @type {FullNormalizedExtension} */ combineExtensions([
|
|
4959
4934
|
constructs_exports
|
|
4960
4935
|
].concat(_to_consumable_array(settings.extensions || [])));
|
|
4961
4936
|
var parser = {
|
|
4962
|
-
defined: [],
|
|
4963
|
-
lazy: {},
|
|
4964
4937
|
constructs: constructs2,
|
|
4965
4938
|
content: create(content),
|
|
4939
|
+
defined: [],
|
|
4966
4940
|
document: create(document),
|
|
4967
4941
|
flow: create(flow),
|
|
4942
|
+
lazy: {},
|
|
4968
4943
|
string: create(string),
|
|
4969
4944
|
text: create(text)
|
|
4970
4945
|
};
|
|
@@ -4976,7 +4951,7 @@ var MarkdownPlugin = function() {
|
|
|
4976
4951
|
}
|
|
4977
4952
|
}
|
|
4978
4953
|
};
|
|
4979
|
-
var postprocess = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
4954
|
+
var postprocess = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/postprocess.js
|
|
4980
4955
|
function postprocess(events) {
|
|
4981
4956
|
while(!subtokenize(events)){}
|
|
4982
4957
|
return events;
|
|
@@ -5078,7 +5053,7 @@ var MarkdownPlugin = function() {
|
|
|
5078
5053
|
};
|
|
5079
5054
|
var stringifyPosition = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js
|
|
5080
5055
|
function stringifyPosition(value) {
|
|
5081
|
-
if (!value || typeof value !== "object") {
|
|
5056
|
+
if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") {
|
|
5082
5057
|
return "";
|
|
5083
5058
|
}
|
|
5084
5059
|
if ("position" in value || "type" in value) {
|
|
@@ -5875,7 +5850,7 @@ var MarkdownPlugin = function() {
|
|
|
5875
5850
|
});
|
|
5876
5851
|
};
|
|
5877
5852
|
var __copyProps = function(to, from, except, desc) {
|
|
5878
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
5853
|
+
if (from && (typeof from === "undefined" ? "undefined" : _type_of(from)) === "object" || typeof from === "function") {
|
|
5879
5854
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
5880
5855
|
try {
|
|
5881
5856
|
var _loop = function() {
|
|
@@ -5930,15 +5905,16 @@ var MarkdownPlugin = function() {
|
|
|
5930
5905
|
exports.toError = exports.NestedError = void 0;
|
|
5931
5906
|
var NestedError4 = /*#__PURE__*/ function(Error1) {
|
|
5932
5907
|
_inherits(_NestedError, Error1);
|
|
5933
|
-
var _super = _create_super(_NestedError);
|
|
5934
5908
|
function _NestedError(message) {
|
|
5935
5909
|
for(var _len = arguments.length, innerErrors = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
|
|
5936
5910
|
innerErrors[_key - 1] = arguments[_key];
|
|
5937
5911
|
}
|
|
5938
5912
|
_class_call_check(this, _NestedError);
|
|
5939
5913
|
var _this;
|
|
5940
|
-
_this =
|
|
5941
|
-
|
|
5914
|
+
_this = _call_super(this, _NestedError, [
|
|
5915
|
+
message
|
|
5916
|
+
]);
|
|
5917
|
+
var thisErrorReport = _NestedError.getErrorReport(_this);
|
|
5942
5918
|
if (innerErrors.length === 1) {
|
|
5943
5919
|
var innerError = toError(innerErrors[0]);
|
|
5944
5920
|
_this.innerErrors = [
|
|
@@ -6074,7 +6050,7 @@ var MarkdownPlugin = function() {
|
|
|
6074
6050
|
return out;
|
|
6075
6051
|
}
|
|
6076
6052
|
function isObject(o) {
|
|
6077
|
-
return o != null && typeof o === "object";
|
|
6053
|
+
return o != null && (typeof o === "undefined" ? "undefined" : _type_of(o)) === "object";
|
|
6078
6054
|
}
|
|
6079
6055
|
function addLast2(array, val) {
|
|
6080
6056
|
if (Array.isArray(val)) return array.concat(val);
|
|
@@ -6417,7 +6393,7 @@ var MarkdownPlugin = function() {
|
|
|
6417
6393
|
else return 0;
|
|
6418
6394
|
}
|
|
6419
6395
|
}();
|
|
6420
|
-
if (typeof module === "object") module.exports = SortedArray2;
|
|
6396
|
+
if ((typeof module === "undefined" ? "undefined" : _type_of(module)) === "object") module.exports = SortedArray2;
|
|
6421
6397
|
if (typeof define === "function" && define.amd) define(function() {
|
|
6422
6398
|
return SortedArray2;
|
|
6423
6399
|
});
|
|
@@ -6614,10 +6590,9 @@ var MarkdownPlugin = function() {
|
|
|
6614
6590
|
}();
|
|
6615
6591
|
var SyncHook = /*#__PURE__*/ function(Hook) {
|
|
6616
6592
|
_inherits(SyncHook, Hook);
|
|
6617
|
-
var _super = _create_super(SyncHook);
|
|
6618
6593
|
function SyncHook() {
|
|
6619
6594
|
_class_call_check(this, SyncHook);
|
|
6620
|
-
return
|
|
6595
|
+
return _call_super(this, SyncHook, arguments);
|
|
6621
6596
|
}
|
|
6622
6597
|
_create_class(SyncHook, [
|
|
6623
6598
|
{
|
|
@@ -6650,10 +6625,9 @@ var MarkdownPlugin = function() {
|
|
|
6650
6625
|
}(Hook);
|
|
6651
6626
|
var SyncBailHook = /*#__PURE__*/ function(Hook) {
|
|
6652
6627
|
_inherits(SyncBailHook, Hook);
|
|
6653
|
-
var _super = _create_super(SyncBailHook);
|
|
6654
6628
|
function SyncBailHook() {
|
|
6655
6629
|
_class_call_check(this, SyncBailHook);
|
|
6656
|
-
return
|
|
6630
|
+
return _call_super(this, SyncBailHook, arguments);
|
|
6657
6631
|
}
|
|
6658
6632
|
_create_class(SyncBailHook, [
|
|
6659
6633
|
{
|
|
@@ -6685,10 +6659,9 @@ var MarkdownPlugin = function() {
|
|
|
6685
6659
|
}(Hook);
|
|
6686
6660
|
var SyncWaterfallHook = /*#__PURE__*/ function(Hook) {
|
|
6687
6661
|
_inherits(SyncWaterfallHook, Hook);
|
|
6688
|
-
var _super = _create_super(SyncWaterfallHook);
|
|
6689
6662
|
function SyncWaterfallHook() {
|
|
6690
6663
|
_class_call_check(this, SyncWaterfallHook);
|
|
6691
|
-
return
|
|
6664
|
+
return _call_super(this, SyncWaterfallHook, arguments);
|
|
6692
6665
|
}
|
|
6693
6666
|
_create_class(SyncWaterfallHook, [
|
|
6694
6667
|
{
|
|
@@ -6750,7 +6723,7 @@ var MarkdownPlugin = function() {
|
|
|
6750
6723
|
for(var _iterator = foo[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
6751
6724
|
len = _step.value;
|
|
6752
6725
|
tmp = len;
|
|
6753
|
-
if (tmp && typeof tmp === "object") {
|
|
6726
|
+
if (tmp && (typeof tmp === "undefined" ? "undefined" : _type_of(tmp)) === "object") {
|
|
6754
6727
|
tmp = find(bar, tmp);
|
|
6755
6728
|
if (!tmp) return false;
|
|
6756
6729
|
}
|
|
@@ -6781,7 +6754,7 @@ var MarkdownPlugin = function() {
|
|
|
6781
6754
|
for(var _iterator1 = foo[Symbol.iterator](), _step1; !(_iteratorNormalCompletion1 = (_step1 = _iterator1.next()).done); _iteratorNormalCompletion1 = true){
|
|
6782
6755
|
len = _step1.value;
|
|
6783
6756
|
tmp = len[0];
|
|
6784
|
-
if (tmp && typeof tmp === "object") {
|
|
6757
|
+
if (tmp && (typeof tmp === "undefined" ? "undefined" : _type_of(tmp)) === "object") {
|
|
6785
6758
|
tmp = find(bar, tmp);
|
|
6786
6759
|
if (!tmp) return false;
|
|
6787
6760
|
}
|
|
@@ -6820,7 +6793,7 @@ var MarkdownPlugin = function() {
|
|
|
6820
6793
|
}
|
|
6821
6794
|
return len === -1;
|
|
6822
6795
|
}
|
|
6823
|
-
if (!ctor || typeof foo === "object") {
|
|
6796
|
+
if (!ctor || (typeof foo === "undefined" ? "undefined" : _type_of(foo)) === "object") {
|
|
6824
6797
|
len = 0;
|
|
6825
6798
|
for(ctor in foo){
|
|
6826
6799
|
if (has.call(foo, ctor) && ++len && !has.call(bar, ctor)) return false;
|
|
@@ -6853,7 +6826,7 @@ var MarkdownPlugin = function() {
|
|
|
6853
6826
|
var nestedPath = _to_consumable_array(path).concat([
|
|
6854
6827
|
key
|
|
6855
6828
|
]);
|
|
6856
|
-
if (typeof val === "object") {
|
|
6829
|
+
if ((typeof val === "undefined" ? "undefined" : _type_of(val)) === "object") {
|
|
6857
6830
|
traverseObj(val, nestedPath, pairs);
|
|
6858
6831
|
} else {
|
|
6859
6832
|
pairs.set(nestedPath, val);
|
|
@@ -6894,7 +6867,7 @@ var MarkdownPlugin = function() {
|
|
|
6894
6867
|
{
|
|
6895
6868
|
/** Add match -> value mapping to the registry */ key: "set",
|
|
6896
6869
|
value: function set(match, value) {
|
|
6897
|
-
var matcher = typeof match === "object" ? createMatcher(match) : createBasicMatcher(match);
|
|
6870
|
+
var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createMatcher(match) : createBasicMatcher(match);
|
|
6898
6871
|
this.store.insert({
|
|
6899
6872
|
key: match,
|
|
6900
6873
|
value: value,
|
|
@@ -7057,6 +7030,7 @@ var MarkdownPlugin = function() {
|
|
|
7057
7030
|
}
|
|
7058
7031
|
};
|
|
7059
7032
|
var identifier = function() {
|
|
7033
|
+
var allowBoolValue = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : false;
|
|
7060
7034
|
if (!isIdentifierChar(ch)) {
|
|
7061
7035
|
return;
|
|
7062
7036
|
}
|
|
@@ -7067,6 +7041,14 @@ var MarkdownPlugin = function() {
|
|
|
7067
7041
|
}
|
|
7068
7042
|
value += ch;
|
|
7069
7043
|
}
|
|
7044
|
+
if (allowBoolValue) {
|
|
7045
|
+
if (value === "true") {
|
|
7046
|
+
return toValue(true);
|
|
7047
|
+
}
|
|
7048
|
+
if (value === "false") {
|
|
7049
|
+
return toValue(false);
|
|
7050
|
+
}
|
|
7051
|
+
}
|
|
7070
7052
|
if (value) {
|
|
7071
7053
|
var maybeNumber = Number(value);
|
|
7072
7054
|
value = isNaN(maybeNumber) ? value : maybeNumber;
|
|
@@ -7115,8 +7097,9 @@ var MarkdownPlugin = function() {
|
|
|
7115
7097
|
}
|
|
7116
7098
|
};
|
|
7117
7099
|
var simpleSegment = function() {
|
|
7100
|
+
var allowBoolValue = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : false;
|
|
7118
7101
|
var _nestedPath, _ref;
|
|
7119
|
-
return (_ref = (_nestedPath = nestedPath()) !== null && _nestedPath !== void 0 ? _nestedPath : expression()) !== null && _ref !== void 0 ? _ref : identifier();
|
|
7102
|
+
return (_ref = (_nestedPath = nestedPath()) !== null && _nestedPath !== void 0 ? _nestedPath : expression()) !== null && _ref !== void 0 ? _ref : identifier(allowBoolValue);
|
|
7120
7103
|
};
|
|
7121
7104
|
var segment = function() {
|
|
7122
7105
|
var segments = [];
|
|
@@ -7131,6 +7114,7 @@ var MarkdownPlugin = function() {
|
|
|
7131
7114
|
return toConcatenatedNode(segments);
|
|
7132
7115
|
};
|
|
7133
7116
|
var optionallyQuotedSegment = function() {
|
|
7117
|
+
var allowBoolValue = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : false;
|
|
7134
7118
|
whitespace();
|
|
7135
7119
|
if (ch === SINGLE_QUOTE || ch === DOUBLE_QUOTE) {
|
|
7136
7120
|
var singleQuote = ch === SINGLE_QUOTE;
|
|
@@ -7139,7 +7123,7 @@ var MarkdownPlugin = function() {
|
|
|
7139
7123
|
next(singleQuote ? SINGLE_QUOTE : DOUBLE_QUOTE);
|
|
7140
7124
|
return id;
|
|
7141
7125
|
}
|
|
7142
|
-
return simpleSegment();
|
|
7126
|
+
return simpleSegment(allowBoolValue);
|
|
7143
7127
|
};
|
|
7144
7128
|
var equals = function() {
|
|
7145
7129
|
if (ch !== EQUALS) {
|
|
@@ -7159,7 +7143,7 @@ var MarkdownPlugin = function() {
|
|
|
7159
7143
|
whitespace();
|
|
7160
7144
|
if (equals()) {
|
|
7161
7145
|
whitespace();
|
|
7162
|
-
var second = optionallyQuotedSegment();
|
|
7146
|
+
var second = optionallyQuotedSegment(true);
|
|
7163
7147
|
value = toQuery(value, second);
|
|
7164
7148
|
whitespace();
|
|
7165
7149
|
}
|
|
@@ -7347,7 +7331,7 @@ var MarkdownPlugin = function() {
|
|
|
7347
7331
|
appendPathSegments(getValueForNode(resolvedNode));
|
|
7348
7332
|
break;
|
|
7349
7333
|
case "Value":
|
|
7350
|
-
appendPathSegments(resolvedNode.value);
|
|
7334
|
+
appendPathSegments(typeof resolvedNode.value === "boolean" ? String(resolvedNode.value) : resolvedNode.value);
|
|
7351
7335
|
break;
|
|
7352
7336
|
case "Query":
|
|
7353
7337
|
{
|
|
@@ -7423,7 +7407,7 @@ var MarkdownPlugin = function() {
|
|
|
7423
7407
|
var _this_parseCache_path;
|
|
7424
7408
|
var ast = (_this_parseCache_path = this.parseCache[path]) !== null && _this_parseCache_path !== void 0 ? _this_parseCache_path : parse(path);
|
|
7425
7409
|
this.parseCache[path] = ast;
|
|
7426
|
-
if (typeof ast !== "object" || !(ast === null || ast === void 0 ? void 0 : ast.status)) {
|
|
7410
|
+
if ((typeof ast === "undefined" ? "undefined" : _type_of(ast)) !== "object" || !(ast === null || ast === void 0 ? void 0 : ast.status)) {
|
|
7427
7411
|
var _ast_error;
|
|
7428
7412
|
throw new TypeError('Cannot normalize path "'.concat(path, '": ').concat((_ast_error = ast === null || ast === void 0 ? void 0 : ast.error) !== null && _ast_error !== void 0 ? _ast_error : "Unknown Error."));
|
|
7429
7413
|
}
|
|
@@ -7623,14 +7607,13 @@ var MarkdownPlugin = function() {
|
|
|
7623
7607
|
}();
|
|
7624
7608
|
var DependencyModel = /*#__PURE__*/ function(DependencyTracker) {
|
|
7625
7609
|
_inherits(DependencyModel, DependencyTracker);
|
|
7626
|
-
var _super = _create_super(DependencyModel);
|
|
7627
7610
|
function DependencyModel(rootModel) {
|
|
7628
7611
|
_class_call_check(this, DependencyModel);
|
|
7629
7612
|
var _this;
|
|
7630
|
-
_this =
|
|
7613
|
+
_this = _call_super(this, DependencyModel);
|
|
7631
7614
|
_this.rootModel = rootModel;
|
|
7632
|
-
_this.set = _this.set.bind(
|
|
7633
|
-
_this.get = _this.get.bind(
|
|
7615
|
+
_this.set = _this.set.bind(_this);
|
|
7616
|
+
_this.get = _this.get.bind(_this);
|
|
7634
7617
|
return _this;
|
|
7635
7618
|
}
|
|
7636
7619
|
_create_class(DependencyModel, [
|
|
@@ -8174,23 +8157,20 @@ var MarkdownPlugin = function() {
|
|
|
8174
8157
|
* @experimental These Player APIs are in active development and may change. Use with caution
|
|
8175
8158
|
*/ key: "evaluateAsync",
|
|
8176
8159
|
value: function evaluateAsync(expr, options) {
|
|
8160
|
+
var _this = this;
|
|
8177
8161
|
if (Array.isArray(expr)) {
|
|
8178
|
-
|
|
8179
|
-
|
|
8180
|
-
var _ref = _async_to_generator(function(exp) {
|
|
8162
|
+
return collateAwaitable(expr.map(function(exp) {
|
|
8163
|
+
return _async_to_generator(function() {
|
|
8181
8164
|
return _ts_generator(this, function(_state) {
|
|
8182
8165
|
return [
|
|
8183
8166
|
2,
|
|
8184
|
-
|
|
8167
|
+
this.evaluate(exp, _object_spread_props(_object_spread({}, options), {
|
|
8185
8168
|
async: true
|
|
8186
8169
|
}))
|
|
8187
8170
|
];
|
|
8188
8171
|
});
|
|
8189
|
-
});
|
|
8190
|
-
|
|
8191
|
-
return _ref.apply(this, arguments);
|
|
8192
|
-
};
|
|
8193
|
-
}())).awaitableThen(function(values) {
|
|
8172
|
+
}).call(_this);
|
|
8173
|
+
})).awaitableThen(function(values) {
|
|
8194
8174
|
return values.pop();
|
|
8195
8175
|
});
|
|
8196
8176
|
} else {
|
|
@@ -8927,23 +8907,8 @@ var MarkdownPlugin = function() {
|
|
|
8927
8907
|
function Parser() {
|
|
8928
8908
|
_class_call_check(this, Parser);
|
|
8929
8909
|
this.hooks = {
|
|
8930
|
-
|
|
8931
|
-
|
|
8932
|
-
*
|
|
8933
|
-
* @param value - The object we're are about to parse
|
|
8934
|
-
* @returns - A new value to parse.
|
|
8935
|
-
* If undefined, the original value is used.
|
|
8936
|
-
* If null, we stop parsing this node.
|
|
8937
|
-
*/ onParseObject: new SyncWaterfallHook(),
|
|
8938
|
-
/**
|
|
8939
|
-
* A callback to interact with an AST _after_ we parse it into the AST
|
|
8940
|
-
*
|
|
8941
|
-
* @param value - The object we parsed
|
|
8942
|
-
* @param node - The AST node we generated
|
|
8943
|
-
* @returns - A new AST node to use
|
|
8944
|
-
* If undefined, the original value is used.
|
|
8945
|
-
* If null, we ignore this node all together
|
|
8946
|
-
*/ onCreateASTNode: new SyncWaterfallHook(),
|
|
8910
|
+
onParseObject: new SyncWaterfallHook(),
|
|
8911
|
+
onCreateASTNode: new SyncWaterfallHook(),
|
|
8947
8912
|
parseNode: new SyncBailHook()
|
|
8948
8913
|
};
|
|
8949
8914
|
}
|
|
@@ -8981,7 +8946,7 @@ var MarkdownPlugin = function() {
|
|
|
8981
8946
|
}
|
|
8982
8947
|
var parseLocalObject = function(currentValue, objToParse) {
|
|
8983
8948
|
var path = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
8984
|
-
if (typeof objToParse !== "object" || objToParse === null) {
|
|
8949
|
+
if ((typeof objToParse === "undefined" ? "undefined" : _type_of(objToParse)) !== "object" || objToParse === null) {
|
|
8985
8950
|
return {
|
|
8986
8951
|
value: objToParse,
|
|
8987
8952
|
children: []
|
|
@@ -9018,7 +8983,7 @@ var MarkdownPlugin = function() {
|
|
|
9018
8983
|
if (newChildren) {
|
|
9019
8984
|
var _children2;
|
|
9020
8985
|
(_children2 = children2).push.apply(_children2, _to_consumable_array(newChildren));
|
|
9021
|
-
} else if (localValue && typeof localValue === "object") {
|
|
8986
|
+
} else if (localValue && (typeof localValue === "undefined" ? "undefined" : _type_of(localValue)) === "object") {
|
|
9022
8987
|
var _children21;
|
|
9023
8988
|
var result = parseLocalObject(accumulation.value, localValue, _to_consumable_array(path).concat([
|
|
9024
8989
|
localKey
|
|
@@ -9085,20 +9050,14 @@ var MarkdownPlugin = function() {
|
|
|
9085
9050
|
function Resolver(root, options) {
|
|
9086
9051
|
_class_call_check(this, Resolver);
|
|
9087
9052
|
this.hooks = {
|
|
9088
|
-
|
|
9089
|
-
|
|
9090
|
-
|
|
9091
|
-
|
|
9092
|
-
|
|
9093
|
-
|
|
9094
|
-
|
|
9095
|
-
|
|
9096
|
-
*/ resolve: new SyncWaterfallHook(),
|
|
9097
|
-
/**
|
|
9098
|
-
* A hook to transform the resolved value of an AST node.
|
|
9099
|
-
* This runs _after_ all children nodes are resolved
|
|
9100
|
-
*/ afterResolve: new SyncWaterfallHook(),
|
|
9101
|
-
/** Called at the very end of a node's tree being updated */ afterNodeUpdate: new SyncHook()
|
|
9053
|
+
skipResolve: new SyncWaterfallHook(),
|
|
9054
|
+
beforeUpdate: new SyncHook(),
|
|
9055
|
+
afterUpdate: new SyncHook(),
|
|
9056
|
+
resolveOptions: new SyncWaterfallHook(),
|
|
9057
|
+
beforeResolve: new SyncWaterfallHook(),
|
|
9058
|
+
resolve: new SyncWaterfallHook(),
|
|
9059
|
+
afterResolve: new SyncWaterfallHook(),
|
|
9060
|
+
afterNodeUpdate: new SyncHook()
|
|
9102
9061
|
};
|
|
9103
9062
|
this.root = root;
|
|
9104
9063
|
this.options = options;
|
|
@@ -9106,6 +9065,7 @@ var MarkdownPlugin = function() {
|
|
|
9106
9065
|
this.ASTMap = /* @__PURE__ */ new Map();
|
|
9107
9066
|
this.logger = options.logger;
|
|
9108
9067
|
this.idCache = /* @__PURE__ */ new Set();
|
|
9068
|
+
this.AsyncIdMap = /* @__PURE__ */ new Map();
|
|
9109
9069
|
}
|
|
9110
9070
|
_create_class(Resolver, [
|
|
9111
9071
|
{
|
|
@@ -9116,13 +9076,27 @@ var MarkdownPlugin = function() {
|
|
|
9116
9076
|
},
|
|
9117
9077
|
{
|
|
9118
9078
|
key: "update",
|
|
9119
|
-
value: function update(changes) {
|
|
9079
|
+
value: function update(changes, asyncChanges) {
|
|
9080
|
+
var _this = this;
|
|
9120
9081
|
this.hooks.beforeUpdate.call(changes);
|
|
9121
9082
|
var resolveCache = /* @__PURE__ */ new Map();
|
|
9122
9083
|
this.idCache.clear();
|
|
9123
9084
|
var prevASTMap = new Map(this.ASTMap);
|
|
9124
9085
|
this.ASTMap.clear();
|
|
9125
|
-
var
|
|
9086
|
+
var prevAsyncIdMap = new Map(this.AsyncIdMap);
|
|
9087
|
+
var nextAsyncIdMap = /* @__PURE__ */ new Map();
|
|
9088
|
+
asyncChanges === null || asyncChanges === void 0 ? void 0 : asyncChanges.forEach(function(id) {
|
|
9089
|
+
var current = prevAsyncIdMap.get(id);
|
|
9090
|
+
while(current && prevASTMap.has(current)){
|
|
9091
|
+
var next = prevASTMap.get(current);
|
|
9092
|
+
if (next && _this.resolveCache.has(next)) {
|
|
9093
|
+
_this.resolveCache.delete(next);
|
|
9094
|
+
}
|
|
9095
|
+
current = current.parent;
|
|
9096
|
+
}
|
|
9097
|
+
});
|
|
9098
|
+
var updated = this.computeTree(this.root, void 0, changes, resolveCache, toNodeResolveOptions(this.options), void 0, prevASTMap, nextAsyncIdMap);
|
|
9099
|
+
this.AsyncIdMap = nextAsyncIdMap;
|
|
9126
9100
|
this.resolveCache = resolveCache;
|
|
9127
9101
|
this.hooks.afterUpdate.call(updated.value);
|
|
9128
9102
|
return updated.value;
|
|
@@ -9167,7 +9141,7 @@ var MarkdownPlugin = function() {
|
|
|
9167
9141
|
Object.keys(clonedNode).forEach(function(key) {
|
|
9168
9142
|
if (key === "parent") return;
|
|
9169
9143
|
var value = clonedNode[key];
|
|
9170
|
-
if (typeof value === "object" && value !== null) {
|
|
9144
|
+
if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null) {
|
|
9171
9145
|
clonedNode[key] = Array.isArray(value) ? _to_consumable_array(value) : _object_spread({}, value);
|
|
9172
9146
|
}
|
|
9173
9147
|
});
|
|
@@ -9176,9 +9150,8 @@ var MarkdownPlugin = function() {
|
|
|
9176
9150
|
},
|
|
9177
9151
|
{
|
|
9178
9152
|
key: "computeTree",
|
|
9179
|
-
value: function computeTree(node2, rawParent, dataChanges, cacheUpdate, options, partiallyResolvedParent, prevASTMap) {
|
|
9153
|
+
value: function computeTree(node2, rawParent, dataChanges, cacheUpdate, options, partiallyResolvedParent, prevASTMap, nextAsyncIdMap) {
|
|
9180
9154
|
var _this = this;
|
|
9181
|
-
var _partiallyResolvedParent_parent_parent, _partiallyResolvedParent_parent, _resolvedAST_parent, _partiallyResolvedParent_parent1;
|
|
9182
9155
|
var dependencyModel = new DependencyModel(options.data.model);
|
|
9183
9156
|
dependencyModel.trackSubset("core");
|
|
9184
9157
|
var depModelWithParser = withContext(withParser(dependencyModel, this.options.parseBinding));
|
|
@@ -9197,15 +9170,6 @@ var MarkdownPlugin = function() {
|
|
|
9197
9170
|
var previousDeps = previousResult === null || previousResult === void 0 ? void 0 : previousResult.dependencies;
|
|
9198
9171
|
var dataChanged = caresAboutDataChanges(dataChanges, previousDeps);
|
|
9199
9172
|
var shouldUseLastValue = this.hooks.skipResolve.call(!dataChanged, node2, resolveOptions);
|
|
9200
|
-
var clonedNode = _object_spread_props(_object_spread({}, this.cloneNode(node2)), {
|
|
9201
|
-
parent: partiallyResolvedParent
|
|
9202
|
-
});
|
|
9203
|
-
var _this_hooks_beforeResolve_call;
|
|
9204
|
-
var resolvedAST = (_this_hooks_beforeResolve_call = this.hooks.beforeResolve.call(clonedNode, resolveOptions)) !== null && _this_hooks_beforeResolve_call !== void 0 ? _this_hooks_beforeResolve_call : {
|
|
9205
|
-
type: "empty"
|
|
9206
|
-
};
|
|
9207
|
-
var isNestedMultiNodeWithAsync = resolvedAST.type === "multi-node" && (partiallyResolvedParent === null || partiallyResolvedParent === void 0 ? void 0 : (_partiallyResolvedParent_parent = partiallyResolvedParent.parent) === null || _partiallyResolvedParent_parent === void 0 ? void 0 : (_partiallyResolvedParent_parent_parent = _partiallyResolvedParent_parent.parent) === null || _partiallyResolvedParent_parent_parent === void 0 ? void 0 : _partiallyResolvedParent_parent_parent.type) === "multi-node" && partiallyResolvedParent.parent.type === "value" && ((_resolvedAST_parent = resolvedAST.parent) === null || _resolvedAST_parent === void 0 ? void 0 : _resolvedAST_parent.type) === "asset" && resolvedAST.parent.value.id.includes("async");
|
|
9208
|
-
var isNestedMultiNode = resolvedAST.type === "multi-node" && (partiallyResolvedParent === null || partiallyResolvedParent === void 0 ? void 0 : (_partiallyResolvedParent_parent1 = partiallyResolvedParent.parent) === null || _partiallyResolvedParent_parent1 === void 0 ? void 0 : _partiallyResolvedParent_parent1.type) === "multi-node" && partiallyResolvedParent.type === "value";
|
|
9209
9173
|
if (previousResult && shouldUseLastValue) {
|
|
9210
9174
|
var update2 = _object_spread_props(_object_spread({}, previousResult), {
|
|
9211
9175
|
updated: false
|
|
@@ -9217,6 +9181,30 @@ var MarkdownPlugin = function() {
|
|
|
9217
9181
|
updated: false
|
|
9218
9182
|
});
|
|
9219
9183
|
cacheUpdate.set(AST, resolvedUpdate);
|
|
9184
|
+
if (resolvedUpdate.node.type === "async") {
|
|
9185
|
+
nextAsyncIdMap.set(resolvedUpdate.node.id, resolvedUpdate.node);
|
|
9186
|
+
}
|
|
9187
|
+
var _resolvedUpdate_node_asyncNodesResolved;
|
|
9188
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
9189
|
+
try {
|
|
9190
|
+
for(var _iterator = ((_resolvedUpdate_node_asyncNodesResolved = resolvedUpdate.node.asyncNodesResolved) !== null && _resolvedUpdate_node_asyncNodesResolved !== void 0 ? _resolvedUpdate_node_asyncNodesResolved : [])[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
9191
|
+
var key = _step.value;
|
|
9192
|
+
nextAsyncIdMap.set(key, resolvedUpdate.node);
|
|
9193
|
+
}
|
|
9194
|
+
} catch (err) {
|
|
9195
|
+
_didIteratorError = true;
|
|
9196
|
+
_iteratorError = err;
|
|
9197
|
+
} finally{
|
|
9198
|
+
try {
|
|
9199
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
9200
|
+
_iterator.return();
|
|
9201
|
+
}
|
|
9202
|
+
} finally{
|
|
9203
|
+
if (_didIteratorError) {
|
|
9204
|
+
throw _iteratorError;
|
|
9205
|
+
}
|
|
9206
|
+
}
|
|
9207
|
+
}
|
|
9220
9208
|
var handleChildNode = function(childNode) {
|
|
9221
9209
|
var _prevASTMap_get;
|
|
9222
9210
|
var originalChildNode = (_prevASTMap_get = prevASTMap.get(childNode)) !== null && _prevASTMap_get !== void 0 ? _prevASTMap_get : childNode;
|
|
@@ -9239,10 +9227,37 @@ var MarkdownPlugin = function() {
|
|
|
9239
9227
|
repopulateASTMapFromCache(previousResult, node2, rawParent);
|
|
9240
9228
|
return update2;
|
|
9241
9229
|
}
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
}
|
|
9245
|
-
|
|
9230
|
+
var clonedNode = _object_spread_props(_object_spread({}, this.cloneNode(node2)), {
|
|
9231
|
+
parent: partiallyResolvedParent
|
|
9232
|
+
});
|
|
9233
|
+
var _this_hooks_beforeResolve_call;
|
|
9234
|
+
var resolvedAST = (_this_hooks_beforeResolve_call = this.hooks.beforeResolve.call(clonedNode, resolveOptions)) !== null && _this_hooks_beforeResolve_call !== void 0 ? _this_hooks_beforeResolve_call : {
|
|
9235
|
+
type: "empty"
|
|
9236
|
+
};
|
|
9237
|
+
resolvedAST.parent = partiallyResolvedParent;
|
|
9238
|
+
if (resolvedAST.type === "async") {
|
|
9239
|
+
nextAsyncIdMap.set(resolvedAST.id, resolvedAST);
|
|
9240
|
+
}
|
|
9241
|
+
var _resolvedAST_asyncNodesResolved;
|
|
9242
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
9243
|
+
try {
|
|
9244
|
+
for(var _iterator = ((_resolvedAST_asyncNodesResolved = resolvedAST.asyncNodesResolved) !== null && _resolvedAST_asyncNodesResolved !== void 0 ? _resolvedAST_asyncNodesResolved : [])[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
9245
|
+
var id = _step.value;
|
|
9246
|
+
nextAsyncIdMap.set(id, resolvedAST);
|
|
9247
|
+
}
|
|
9248
|
+
} catch (err) {
|
|
9249
|
+
_didIteratorError = true;
|
|
9250
|
+
_iteratorError = err;
|
|
9251
|
+
} finally{
|
|
9252
|
+
try {
|
|
9253
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
9254
|
+
_iterator.return();
|
|
9255
|
+
}
|
|
9256
|
+
} finally{
|
|
9257
|
+
if (_didIteratorError) {
|
|
9258
|
+
throw _iteratorError;
|
|
9259
|
+
}
|
|
9260
|
+
}
|
|
9246
9261
|
}
|
|
9247
9262
|
resolveOptions.node = resolvedAST;
|
|
9248
9263
|
this.ASTMap.set(resolvedAST, node2);
|
|
@@ -9256,7 +9271,7 @@ var MarkdownPlugin = function() {
|
|
|
9256
9271
|
if ("children" in resolvedAST) {
|
|
9257
9272
|
var _resolvedAST_children;
|
|
9258
9273
|
var newChildren = (_resolvedAST_children = resolvedAST.children) === null || _resolvedAST_children === void 0 ? void 0 : _resolvedAST_children.map(function(child) {
|
|
9259
|
-
var computedChildTree = _this.computeTree(child.value, node2, dataChanges, cacheUpdate, resolveOptions, resolvedAST, prevASTMap);
|
|
9274
|
+
var computedChildTree = _this.computeTree(child.value, node2, dataChanges, cacheUpdate, resolveOptions, resolvedAST, prevASTMap, nextAsyncIdMap);
|
|
9260
9275
|
var childTreeDeps = computedChildTree.dependencies, childNode = computedChildTree.node, childUpdated = computedChildTree.updated, childValue = computedChildTree.value;
|
|
9261
9276
|
childTreeDeps.forEach(function(binding) {
|
|
9262
9277
|
return childDependencies.add(binding);
|
|
@@ -9277,40 +9292,18 @@ var MarkdownPlugin = function() {
|
|
|
9277
9292
|
resolvedAST.children = newChildren;
|
|
9278
9293
|
} else if (resolvedAST.type === "multi-node") {
|
|
9279
9294
|
var childValue = [];
|
|
9280
|
-
var rawParentToPassIn =
|
|
9281
|
-
|
|
9282
|
-
|
|
9283
|
-
}).filter(function(index2) {
|
|
9284
|
-
return index2 !== -1;
|
|
9285
|
-
});
|
|
9286
|
-
var newValues = resolvedAST.values.map(function(mValue) {
|
|
9287
|
-
var mTree = _this.computeTree(mValue, rawParentToPassIn, dataChanges, cacheUpdate, resolveOptions, resolvedAST, prevASTMap);
|
|
9295
|
+
var rawParentToPassIn = node2;
|
|
9296
|
+
resolvedAST.values = resolvedAST.values.map(function(mValue) {
|
|
9297
|
+
var mTree = _this.computeTree(mValue, rawParentToPassIn, dataChanges, cacheUpdate, resolveOptions, resolvedAST, prevASTMap, nextAsyncIdMap);
|
|
9288
9298
|
if (mTree.value !== void 0 && mTree.value !== null) {
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
}
|
|
9292
|
-
|
|
9293
|
-
|
|
9299
|
+
mTree.dependencies.forEach(function(bindingDep) {
|
|
9300
|
+
return childDependencies.add(bindingDep);
|
|
9301
|
+
});
|
|
9302
|
+
updated = updated || mTree.updated;
|
|
9303
|
+
childValue.push(mTree.value);
|
|
9294
9304
|
}
|
|
9295
|
-
mTree.dependencies.forEach(function(bindingDep) {
|
|
9296
|
-
return childDependencies.add(bindingDep);
|
|
9297
|
-
});
|
|
9298
|
-
updated = updated || mTree.updated;
|
|
9299
9305
|
return mTree.node;
|
|
9300
9306
|
});
|
|
9301
|
-
if (hasAsync.length > 0) {
|
|
9302
|
-
var copy = newValues;
|
|
9303
|
-
hasAsync.forEach(function(index2) {
|
|
9304
|
-
var _copy;
|
|
9305
|
-
if (copy[index2]) (_copy = copy).splice.apply(_copy, [
|
|
9306
|
-
index2,
|
|
9307
|
-
1
|
|
9308
|
-
].concat(_to_consumable_array(unpackNode(copy[index2]))));
|
|
9309
|
-
});
|
|
9310
|
-
resolvedAST.values = copy;
|
|
9311
|
-
} else {
|
|
9312
|
-
resolvedAST.values = newValues;
|
|
9313
|
-
}
|
|
9314
9307
|
resolved = childValue;
|
|
9315
9308
|
}
|
|
9316
9309
|
childDependencies.forEach(function(bindingDep) {
|
|
@@ -9331,7 +9324,7 @@ var MarkdownPlugin = function() {
|
|
|
9331
9324
|
value: resolved,
|
|
9332
9325
|
dependencies: /* @__PURE__ */ new Set(_to_consumable_array(dependencyModel.getDependencies()).concat(_to_consumable_array(childDependencies)))
|
|
9333
9326
|
};
|
|
9334
|
-
this.hooks.afterNodeUpdate.call(node2,
|
|
9327
|
+
this.hooks.afterNodeUpdate.call(node2, rawParent, update);
|
|
9335
9328
|
cacheUpdate.set(node2, update);
|
|
9336
9329
|
return update;
|
|
9337
9330
|
}
|
|
@@ -9339,15 +9332,6 @@ var MarkdownPlugin = function() {
|
|
|
9339
9332
|
]);
|
|
9340
9333
|
return Resolver;
|
|
9341
9334
|
}();
|
|
9342
|
-
function unpackAndPush(item, initial) {
|
|
9343
|
-
if (item.asset.values && Array.isArray(item.asset.values)) {
|
|
9344
|
-
item.asset.values.forEach(function(i) {
|
|
9345
|
-
unpackAndPush(i, initial);
|
|
9346
|
-
});
|
|
9347
|
-
} else {
|
|
9348
|
-
initial.push(item);
|
|
9349
|
-
}
|
|
9350
|
-
}
|
|
9351
9335
|
var CrossfieldProvider = /*#__PURE__*/ function() {
|
|
9352
9336
|
function CrossfieldProvider(initialView, parser, logger) {
|
|
9353
9337
|
_class_call_check(this, CrossfieldProvider);
|
|
@@ -9415,9 +9399,11 @@ var MarkdownPlugin = function() {
|
|
|
9415
9399
|
_create_class(ViewInstance, [
|
|
9416
9400
|
{
|
|
9417
9401
|
key: "updateAsync",
|
|
9418
|
-
value: function updateAsync() {
|
|
9402
|
+
value: function updateAsync(asyncNode) {
|
|
9419
9403
|
var _this_resolver;
|
|
9420
|
-
var update = (_this_resolver = this.resolver) === null || _this_resolver === void 0 ? void 0 : _this_resolver.update()
|
|
9404
|
+
var update = (_this_resolver = this.resolver) === null || _this_resolver === void 0 ? void 0 : _this_resolver.update(/* @__PURE__ */ new Set(), /* @__PURE__ */ new Set([
|
|
9405
|
+
asyncNode
|
|
9406
|
+
]));
|
|
9421
9407
|
this.lastUpdate = update;
|
|
9422
9408
|
this.hooks.onUpdate.call(update);
|
|
9423
9409
|
}
|
|
@@ -9507,7 +9493,7 @@ var MarkdownPlugin = function() {
|
|
|
9507
9493
|
for(var _iterator = templateSubstitutions[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
9508
9494
|
var _step_value = _step.value, expression = _step_value.expression, value = _step_value.value;
|
|
9509
9495
|
var flags = "g";
|
|
9510
|
-
if (typeof expression === "object") {
|
|
9496
|
+
if ((typeof expression === "undefined" ? "undefined" : _type_of(expression)) === "object") {
|
|
9511
9497
|
flags = "".concat(expression.flags).concat(expression.global ? "" : "g");
|
|
9512
9498
|
}
|
|
9513
9499
|
templateStr = templateStr.replace(new RegExp(expression, flags), value);
|
|
@@ -9656,7 +9642,7 @@ var MarkdownPlugin = function() {
|
|
|
9656
9642
|
var bindingResolveLookup = createPatternMatcher("{{", "}}");
|
|
9657
9643
|
var expressionResolveLookup = createPatternMatcher("@[", "]@");
|
|
9658
9644
|
function resolveAllRefs(node2, resolveOptions, propertiesToSkip) {
|
|
9659
|
-
if (node2 === null || node2 === void 0 || typeof node2 !== "object" && typeof node2 !== "string") {
|
|
9645
|
+
if (node2 === null || node2 === void 0 || (typeof node2 === "undefined" ? "undefined" : _type_of(node2)) !== "object" && typeof node2 !== "string") {
|
|
9660
9646
|
return node2;
|
|
9661
9647
|
}
|
|
9662
9648
|
if (typeof node2 === "string") {
|
|
@@ -9669,7 +9655,7 @@ var MarkdownPlugin = function() {
|
|
|
9669
9655
|
}
|
|
9670
9656
|
var val = node2[key];
|
|
9671
9657
|
var newVal = val;
|
|
9672
|
-
if (typeof val === "object") {
|
|
9658
|
+
if ((typeof val === "undefined" ? "undefined" : _type_of(val)) === "object") {
|
|
9673
9659
|
newVal = resolveAllRefs(val, resolveOptions, propertiesToSkip);
|
|
9674
9660
|
} else if (typeof val === "string") {
|
|
9675
9661
|
newVal = resolveString(val, resolveOptions);
|
|
@@ -9958,7 +9944,7 @@ var MarkdownPlugin = function() {
|
|
|
9958
9944
|
key: "applyParser",
|
|
9959
9945
|
value: function applyParser(parser) {
|
|
9960
9946
|
parser.hooks.parseNode.tap("multi-node", function(obj, nodeType, options, childOptions) {
|
|
9961
|
-
if (childOptions
|
|
9947
|
+
if ((childOptions === void 0 || !hasTemplateKey(childOptions.key)) && Array.isArray(obj)) {
|
|
9962
9948
|
var values = obj.map(function(childVal) {
|
|
9963
9949
|
return parser.parseObject(childVal, "value", options);
|
|
9964
9950
|
}).filter(function(child) {
|
|
@@ -9969,7 +9955,7 @@ var MarkdownPlugin = function() {
|
|
|
9969
9955
|
}
|
|
9970
9956
|
var multiNode = parser.createASTNode({
|
|
9971
9957
|
type: "multi-node",
|
|
9972
|
-
override: !hasTemplateValues(childOptions.parentObj, childOptions.key),
|
|
9958
|
+
override: childOptions !== void 0 && !hasTemplateValues(childOptions.parentObj, childOptions.key),
|
|
9973
9959
|
values: values
|
|
9974
9960
|
}, obj);
|
|
9975
9961
|
if (!multiNode) {
|
|
@@ -9980,7 +9966,7 @@ var MarkdownPlugin = function() {
|
|
|
9980
9966
|
v.parent = multiNode;
|
|
9981
9967
|
});
|
|
9982
9968
|
}
|
|
9983
|
-
return [
|
|
9969
|
+
return childOptions === void 0 ? multiNode : [
|
|
9984
9970
|
{
|
|
9985
9971
|
path: _to_consumable_array(childOptions.path).concat([
|
|
9986
9972
|
childOptions.key
|
|
@@ -10010,7 +9996,7 @@ var MarkdownPlugin = function() {
|
|
|
10010
9996
|
key: "applyParser",
|
|
10011
9997
|
value: function applyParser(parser) {
|
|
10012
9998
|
parser.hooks.parseNode.tap("asset", function(obj, nodeType, options, childOptions) {
|
|
10013
|
-
if ((childOptions === null || childOptions === void 0 ? void 0 : childOptions.key) === "asset" && typeof obj === "object") {
|
|
9999
|
+
if ((childOptions === null || childOptions === void 0 ? void 0 : childOptions.key) === "asset" && (typeof obj === "undefined" ? "undefined" : _type_of(obj)) === "object") {
|
|
10014
10000
|
var assetAST = parser.parseObject(obj, "asset", options);
|
|
10015
10001
|
if (!assetAST) {
|
|
10016
10002
|
return [];
|
|
@@ -10210,6 +10196,7 @@ var MarkdownPlugin = function() {
|
|
|
10210
10196
|
}();
|
|
10211
10197
|
var FlowInstance = /*#__PURE__*/ function() {
|
|
10212
10198
|
function FlowInstance(id, flow3, options) {
|
|
10199
|
+
var _this = this;
|
|
10213
10200
|
_class_call_check(this, FlowInstance);
|
|
10214
10201
|
this.isTransitioning = false;
|
|
10215
10202
|
this.hooks = {
|
|
@@ -10226,60 +10213,55 @@ var MarkdownPlugin = function() {
|
|
|
10226
10213
|
this.flow = flow3;
|
|
10227
10214
|
this.log = options === null || options === void 0 ? void 0 : options.logger;
|
|
10228
10215
|
this.history = [];
|
|
10229
|
-
|
|
10230
|
-
|
|
10231
|
-
var _ref = _async_to_generator(function(_oldState, nextState) {
|
|
10216
|
+
this.hooks.transition.tap("startPromise", function(_oldState, nextState) {
|
|
10217
|
+
return _async_to_generator(function() {
|
|
10232
10218
|
var newState;
|
|
10233
10219
|
return _ts_generator(this, function(_state) {
|
|
10234
10220
|
newState = nextState.value;
|
|
10235
|
-
if (
|
|
10236
|
-
|
|
10221
|
+
if (this.flowPromise && newState.state_type === "END") {
|
|
10222
|
+
this.flowPromise.resolve(newState);
|
|
10237
10223
|
}
|
|
10238
10224
|
return [
|
|
10239
10225
|
2
|
|
10240
10226
|
];
|
|
10241
10227
|
});
|
|
10242
|
-
});
|
|
10243
|
-
|
|
10244
|
-
return _ref.apply(this, arguments);
|
|
10245
|
-
};
|
|
10246
|
-
}());
|
|
10228
|
+
}).call(_this);
|
|
10229
|
+
});
|
|
10247
10230
|
}
|
|
10248
10231
|
_create_class(FlowInstance, [
|
|
10249
10232
|
{
|
|
10250
10233
|
key: "start",
|
|
10251
10234
|
value: /** Start the state machine */ function start() {
|
|
10252
|
-
var _this = this;
|
|
10253
10235
|
return _async_to_generator(function() {
|
|
10254
10236
|
var _this_log, initialState;
|
|
10255
10237
|
return _ts_generator(this, function(_state) {
|
|
10256
|
-
if (
|
|
10238
|
+
if (this.flowPromise) {
|
|
10257
10239
|
;
|
|
10258
|
-
(_this_log =
|
|
10240
|
+
(_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.warn("Already called start for flow");
|
|
10259
10241
|
return [
|
|
10260
10242
|
2,
|
|
10261
|
-
|
|
10243
|
+
this.flowPromise.promise
|
|
10262
10244
|
];
|
|
10263
10245
|
}
|
|
10264
|
-
|
|
10265
|
-
if (
|
|
10266
|
-
|
|
10246
|
+
this.flow = this.hooks.beforeStart.call(this.flow) || this.flow;
|
|
10247
|
+
if (this.flow.onStart) {
|
|
10248
|
+
this.hooks.onStart.call(this.flow.onStart);
|
|
10267
10249
|
}
|
|
10268
|
-
initialState =
|
|
10250
|
+
initialState = this.flow.startState;
|
|
10269
10251
|
if (!initialState) {
|
|
10270
10252
|
return [
|
|
10271
10253
|
2,
|
|
10272
10254
|
Promise.reject(new Error("No 'startState' defined for flow"))
|
|
10273
10255
|
];
|
|
10274
10256
|
}
|
|
10275
|
-
|
|
10276
|
-
|
|
10257
|
+
this.flowPromise = (0, import_p_defer2.default)();
|
|
10258
|
+
this.pushHistory(initialState);
|
|
10277
10259
|
return [
|
|
10278
10260
|
2,
|
|
10279
|
-
|
|
10261
|
+
this.flowPromise.promise
|
|
10280
10262
|
];
|
|
10281
10263
|
});
|
|
10282
|
-
})();
|
|
10264
|
+
}).call(this);
|
|
10283
10265
|
}
|
|
10284
10266
|
},
|
|
10285
10267
|
{
|
|
@@ -10331,7 +10313,7 @@ var MarkdownPlugin = function() {
|
|
|
10331
10313
|
throw new Error("No flow definition for: ".concat(stateName, " was found."));
|
|
10332
10314
|
}
|
|
10333
10315
|
var nextState = this.flow[stateName];
|
|
10334
|
-
if (!this.flow[stateName] || typeof nextState !== "object" || !("state_type" in nextState)) {
|
|
10316
|
+
if (!this.flow[stateName] || (typeof nextState === "undefined" ? "undefined" : _type_of(nextState)) !== "object" || !("state_type" in nextState)) {
|
|
10335
10317
|
var _this_log;
|
|
10336
10318
|
(_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.error("Flow doesn't contain any states named: ".concat(stateName));
|
|
10337
10319
|
return;
|
|
@@ -10391,30 +10373,30 @@ var MarkdownPlugin = function() {
|
|
|
10391
10373
|
{
|
|
10392
10374
|
key: "run",
|
|
10393
10375
|
value: function run(startState) {
|
|
10394
|
-
var _this = this;
|
|
10395
10376
|
return _async_to_generator(function() {
|
|
10396
|
-
var _this_log, startFlow, flow3, end, firstItem;
|
|
10377
|
+
var _this, _this_log, startFlow, flow3, end, firstItem;
|
|
10397
10378
|
return _ts_generator(this, function(_state) {
|
|
10398
10379
|
switch(_state.label){
|
|
10399
10380
|
case 0:
|
|
10400
|
-
|
|
10381
|
+
_this = this;
|
|
10382
|
+
if (!Object.prototype.hasOwnProperty.call(this.navigation, startState)) {
|
|
10401
10383
|
return [
|
|
10402
10384
|
2,
|
|
10403
10385
|
Promise.reject(new Error("No flow defined for: ".concat(startState)))
|
|
10404
10386
|
];
|
|
10405
10387
|
}
|
|
10406
|
-
startFlow =
|
|
10407
|
-
if (startFlow === null || typeof startFlow !== "object") {
|
|
10388
|
+
startFlow = this.navigation[startState];
|
|
10389
|
+
if (startFlow === null || (typeof startFlow === "undefined" ? "undefined" : _type_of(startFlow)) !== "object") {
|
|
10408
10390
|
return [
|
|
10409
10391
|
2,
|
|
10410
10392
|
Promise.reject(new Error("Flow: ".concat(startState, " needs to be an object")))
|
|
10411
10393
|
];
|
|
10412
10394
|
}
|
|
10413
|
-
(_this_log =
|
|
10395
|
+
(_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.debug("Starting flow: ".concat(startState));
|
|
10414
10396
|
flow3 = new FlowInstance(startState, startFlow, {
|
|
10415
|
-
logger:
|
|
10397
|
+
logger: this.log
|
|
10416
10398
|
});
|
|
10417
|
-
|
|
10399
|
+
this.addNewFlow(flow3);
|
|
10418
10400
|
flow3.hooks.afterTransition.tap("flow-controller", function(flowInstance) {
|
|
10419
10401
|
var _flowInstance_currentState;
|
|
10420
10402
|
if (((_flowInstance_currentState = flowInstance.currentState) === null || _flowInstance_currentState === void 0 ? void 0 : _flowInstance_currentState.value.state_type) === "FLOW") {
|
|
@@ -10434,10 +10416,10 @@ var MarkdownPlugin = function() {
|
|
|
10434
10416
|
];
|
|
10435
10417
|
case 1:
|
|
10436
10418
|
end = _state.sent();
|
|
10437
|
-
|
|
10438
|
-
if (
|
|
10419
|
+
this.navStack.pop();
|
|
10420
|
+
if (this.navStack.length > 0) {
|
|
10439
10421
|
firstItem = 0;
|
|
10440
|
-
|
|
10422
|
+
this.current = this.navStack[firstItem];
|
|
10441
10423
|
}
|
|
10442
10424
|
return [
|
|
10443
10425
|
2,
|
|
@@ -10445,16 +10427,15 @@ var MarkdownPlugin = function() {
|
|
|
10445
10427
|
];
|
|
10446
10428
|
}
|
|
10447
10429
|
});
|
|
10448
|
-
})();
|
|
10430
|
+
}).call(this);
|
|
10449
10431
|
}
|
|
10450
10432
|
},
|
|
10451
10433
|
{
|
|
10452
10434
|
key: "start",
|
|
10453
10435
|
value: function start() {
|
|
10454
|
-
var _this = this;
|
|
10455
10436
|
return _async_to_generator(function() {
|
|
10456
10437
|
return _ts_generator(this, function(_state) {
|
|
10457
|
-
if (!
|
|
10438
|
+
if (!this.navigation.BEGIN) {
|
|
10458
10439
|
return [
|
|
10459
10440
|
2,
|
|
10460
10441
|
Promise.reject(new Error("Must supply a BEGIN state"))
|
|
@@ -10462,10 +10443,10 @@ var MarkdownPlugin = function() {
|
|
|
10462
10443
|
}
|
|
10463
10444
|
return [
|
|
10464
10445
|
2,
|
|
10465
|
-
|
|
10446
|
+
this.run(this.navigation.BEGIN)
|
|
10466
10447
|
];
|
|
10467
10448
|
});
|
|
10468
|
-
})();
|
|
10449
|
+
}).call(this);
|
|
10469
10450
|
}
|
|
10470
10451
|
}
|
|
10471
10452
|
]);
|
|
@@ -11572,7 +11553,7 @@ var MarkdownPlugin = function() {
|
|
|
11572
11553
|
var parentBinding = resolved.parent();
|
|
11573
11554
|
var property = resolved.key();
|
|
11574
11555
|
var parentValue = this.get(parentBinding);
|
|
11575
|
-
var existedBeforeDelete = typeof parentValue === "object" && parentValue !== null && Object.prototype.hasOwnProperty.call(parentValue, property);
|
|
11556
|
+
var existedBeforeDelete = (typeof parentValue === "undefined" ? "undefined" : _type_of(parentValue)) === "object" && parentValue !== null && Object.prototype.hasOwnProperty.call(parentValue, property);
|
|
11576
11557
|
this.getModel().delete(resolved, options);
|
|
11577
11558
|
if (existedBeforeDelete && !this.get(resolved)) {
|
|
11578
11559
|
this.trash.add(resolved);
|
|
@@ -11673,7 +11654,7 @@ var MarkdownPlugin = function() {
|
|
|
11673
11654
|
var expressionEvaluator;
|
|
11674
11655
|
var handleEval = function(exp) {
|
|
11675
11656
|
if (exp) {
|
|
11676
|
-
if (typeof exp === "object" && "exp" in exp) {
|
|
11657
|
+
if ((typeof exp === "undefined" ? "undefined" : _type_of(exp)) === "object" && "exp" in exp) {
|
|
11677
11658
|
expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(exp.exp);
|
|
11678
11659
|
} else {
|
|
11679
11660
|
expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(exp);
|
|
@@ -11934,7 +11915,7 @@ var MarkdownPlugin = function() {
|
|
|
11934
11915
|
flow3.hooks.beforeTransition.tap("player", function(state, transitionVal) {
|
|
11935
11916
|
var computedTransitionVal = state.transitions[transitionVal] ? transitionVal : "*";
|
|
11936
11917
|
if (state.onEnd && state.transitions[computedTransitionVal]) {
|
|
11937
|
-
if (
|
|
11918
|
+
if (_type_of(state.onEnd) === "object" && "exp" in state.onEnd) {
|
|
11938
11919
|
expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(state.onEnd.exp);
|
|
11939
11920
|
} else {
|
|
11940
11921
|
expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(state.onEnd);
|
|
@@ -12093,12 +12074,12 @@ var MarkdownPlugin = function() {
|
|
|
12093
12074
|
{
|
|
12094
12075
|
key: "start",
|
|
12095
12076
|
value: function start(payload) {
|
|
12096
|
-
var _this = this;
|
|
12097
12077
|
return _async_to_generator(function() {
|
|
12098
|
-
var _payload_id, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
|
|
12078
|
+
var _this, _payload_id, ref, maybeUpdateState, _this_setupFlow, state, start, endProps, _tmp, error, errorState;
|
|
12099
12079
|
return _ts_generator(this, function(_state) {
|
|
12100
12080
|
switch(_state.label){
|
|
12101
12081
|
case 0:
|
|
12082
|
+
_this = this;
|
|
12102
12083
|
ref = Symbol((_payload_id = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _payload_id !== void 0 ? _payload_id : "payload");
|
|
12103
12084
|
maybeUpdateState = function(newState) {
|
|
12104
12085
|
if (_this.state.ref !== ref) {
|
|
@@ -12108,7 +12089,7 @@ var MarkdownPlugin = function() {
|
|
|
12108
12089
|
_this.setState(newState);
|
|
12109
12090
|
return newState;
|
|
12110
12091
|
};
|
|
12111
|
-
|
|
12092
|
+
this.setState({
|
|
12112
12093
|
status: "not-started",
|
|
12113
12094
|
ref: ref
|
|
12114
12095
|
});
|
|
@@ -12120,8 +12101,8 @@ var MarkdownPlugin = function() {
|
|
|
12120
12101
|
,
|
|
12121
12102
|
4
|
|
12122
12103
|
]);
|
|
12123
|
-
_this_setupFlow =
|
|
12124
|
-
|
|
12104
|
+
_this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
|
|
12105
|
+
this.setState(_object_spread({
|
|
12125
12106
|
ref: ref
|
|
12126
12107
|
}, state));
|
|
12127
12108
|
start();
|
|
@@ -12166,7 +12147,7 @@ var MarkdownPlugin = function() {
|
|
|
12166
12147
|
];
|
|
12167
12148
|
}
|
|
12168
12149
|
});
|
|
12169
|
-
})();
|
|
12150
|
+
}).call(this);
|
|
12170
12151
|
}
|
|
12171
12152
|
}
|
|
12172
12153
|
]);
|
|
@@ -12186,16 +12167,16 @@ var MarkdownPlugin = function() {
|
|
|
12186
12167
|
Abreve: "\u0102",
|
|
12187
12168
|
Acirc: "\xC2",
|
|
12188
12169
|
Acy: "\u0410",
|
|
12189
|
-
Afr: "\
|
|
12170
|
+
Afr: "\uD835\uDD04",
|
|
12190
12171
|
Agrave: "\xC0",
|
|
12191
12172
|
Alpha: "\u0391",
|
|
12192
12173
|
Amacr: "\u0100",
|
|
12193
12174
|
And: "\u2A53",
|
|
12194
12175
|
Aogon: "\u0104",
|
|
12195
|
-
Aopf: "\
|
|
12176
|
+
Aopf: "\uD835\uDD38",
|
|
12196
12177
|
ApplyFunction: "\u2061",
|
|
12197
12178
|
Aring: "\xC5",
|
|
12198
|
-
Ascr: "\
|
|
12179
|
+
Ascr: "\uD835\uDC9C",
|
|
12199
12180
|
Assign: "\u2254",
|
|
12200
12181
|
Atilde: "\xC3",
|
|
12201
12182
|
Auml: "\xC4",
|
|
@@ -12206,8 +12187,8 @@ var MarkdownPlugin = function() {
|
|
|
12206
12187
|
Because: "\u2235",
|
|
12207
12188
|
Bernoullis: "\u212C",
|
|
12208
12189
|
Beta: "\u0392",
|
|
12209
|
-
Bfr: "\
|
|
12210
|
-
Bopf: "\
|
|
12190
|
+
Bfr: "\uD835\uDD05",
|
|
12191
|
+
Bopf: "\uD835\uDD39",
|
|
12211
12192
|
Breve: "\u02D8",
|
|
12212
12193
|
Bscr: "\u212C",
|
|
12213
12194
|
Bumpeq: "\u224E",
|
|
@@ -12242,7 +12223,7 @@ var MarkdownPlugin = function() {
|
|
|
12242
12223
|
Coproduct: "\u2210",
|
|
12243
12224
|
CounterClockwiseContourIntegral: "\u2233",
|
|
12244
12225
|
Cross: "\u2A2F",
|
|
12245
|
-
Cscr: "\
|
|
12226
|
+
Cscr: "\uD835\uDC9E",
|
|
12246
12227
|
Cup: "\u22D3",
|
|
12247
12228
|
CupCap: "\u224D",
|
|
12248
12229
|
DD: "\u2145",
|
|
@@ -12257,7 +12238,7 @@ var MarkdownPlugin = function() {
|
|
|
12257
12238
|
Dcy: "\u0414",
|
|
12258
12239
|
Del: "\u2207",
|
|
12259
12240
|
Delta: "\u0394",
|
|
12260
|
-
Dfr: "\
|
|
12241
|
+
Dfr: "\uD835\uDD07",
|
|
12261
12242
|
DiacriticalAcute: "\xB4",
|
|
12262
12243
|
DiacriticalDot: "\u02D9",
|
|
12263
12244
|
DiacriticalDoubleAcute: "\u02DD",
|
|
@@ -12265,7 +12246,7 @@ var MarkdownPlugin = function() {
|
|
|
12265
12246
|
DiacriticalTilde: "\u02DC",
|
|
12266
12247
|
Diamond: "\u22C4",
|
|
12267
12248
|
DifferentialD: "\u2146",
|
|
12268
|
-
Dopf: "\
|
|
12249
|
+
Dopf: "\uD835\uDD3B",
|
|
12269
12250
|
Dot: "\xA8",
|
|
12270
12251
|
DotDot: "\u20DC",
|
|
12271
12252
|
DotEqual: "\u2250",
|
|
@@ -12297,7 +12278,7 @@ var MarkdownPlugin = function() {
|
|
|
12297
12278
|
DownTee: "\u22A4",
|
|
12298
12279
|
DownTeeArrow: "\u21A7",
|
|
12299
12280
|
Downarrow: "\u21D3",
|
|
12300
|
-
Dscr: "\
|
|
12281
|
+
Dscr: "\uD835\uDC9F",
|
|
12301
12282
|
Dstrok: "\u0110",
|
|
12302
12283
|
ENG: "\u014A",
|
|
12303
12284
|
ETH: "\xD0",
|
|
@@ -12306,14 +12287,14 @@ var MarkdownPlugin = function() {
|
|
|
12306
12287
|
Ecirc: "\xCA",
|
|
12307
12288
|
Ecy: "\u042D",
|
|
12308
12289
|
Edot: "\u0116",
|
|
12309
|
-
Efr: "\
|
|
12290
|
+
Efr: "\uD835\uDD08",
|
|
12310
12291
|
Egrave: "\xC8",
|
|
12311
12292
|
Element: "\u2208",
|
|
12312
12293
|
Emacr: "\u0112",
|
|
12313
12294
|
EmptySmallSquare: "\u25FB",
|
|
12314
12295
|
EmptyVerySmallSquare: "\u25AB",
|
|
12315
12296
|
Eogon: "\u0118",
|
|
12316
|
-
Eopf: "\
|
|
12297
|
+
Eopf: "\uD835\uDD3C",
|
|
12317
12298
|
Epsilon: "\u0395",
|
|
12318
12299
|
Equal: "\u2A75",
|
|
12319
12300
|
EqualTilde: "\u2242",
|
|
@@ -12325,10 +12306,10 @@ var MarkdownPlugin = function() {
|
|
|
12325
12306
|
Exists: "\u2203",
|
|
12326
12307
|
ExponentialE: "\u2147",
|
|
12327
12308
|
Fcy: "\u0424",
|
|
12328
|
-
Ffr: "\
|
|
12309
|
+
Ffr: "\uD835\uDD09",
|
|
12329
12310
|
FilledSmallSquare: "\u25FC",
|
|
12330
12311
|
FilledVerySmallSquare: "\u25AA",
|
|
12331
|
-
Fopf: "\
|
|
12312
|
+
Fopf: "\uD835\uDD3D",
|
|
12332
12313
|
ForAll: "\u2200",
|
|
12333
12314
|
Fouriertrf: "\u2131",
|
|
12334
12315
|
Fscr: "\u2131",
|
|
@@ -12341,9 +12322,9 @@ var MarkdownPlugin = function() {
|
|
|
12341
12322
|
Gcirc: "\u011C",
|
|
12342
12323
|
Gcy: "\u0413",
|
|
12343
12324
|
Gdot: "\u0120",
|
|
12344
|
-
Gfr: "\
|
|
12325
|
+
Gfr: "\uD835\uDD0A",
|
|
12345
12326
|
Gg: "\u22D9",
|
|
12346
|
-
Gopf: "\
|
|
12327
|
+
Gopf: "\uD835\uDD3E",
|
|
12347
12328
|
GreaterEqual: "\u2265",
|
|
12348
12329
|
GreaterEqualLess: "\u22DB",
|
|
12349
12330
|
GreaterFullEqual: "\u2267",
|
|
@@ -12351,7 +12332,7 @@ var MarkdownPlugin = function() {
|
|
|
12351
12332
|
GreaterLess: "\u2277",
|
|
12352
12333
|
GreaterSlantEqual: "\u2A7E",
|
|
12353
12334
|
GreaterTilde: "\u2273",
|
|
12354
|
-
Gscr: "\
|
|
12335
|
+
Gscr: "\uD835\uDCA2",
|
|
12355
12336
|
Gt: "\u226B",
|
|
12356
12337
|
HARDcy: "\u042A",
|
|
12357
12338
|
Hacek: "\u02C7",
|
|
@@ -12384,7 +12365,7 @@ var MarkdownPlugin = function() {
|
|
|
12384
12365
|
InvisibleComma: "\u2063",
|
|
12385
12366
|
InvisibleTimes: "\u2062",
|
|
12386
12367
|
Iogon: "\u012E",
|
|
12387
|
-
Iopf: "\
|
|
12368
|
+
Iopf: "\uD835\uDD40",
|
|
12388
12369
|
Iota: "\u0399",
|
|
12389
12370
|
Iscr: "\u2110",
|
|
12390
12371
|
Itilde: "\u0128",
|
|
@@ -12392,9 +12373,9 @@ var MarkdownPlugin = function() {
|
|
|
12392
12373
|
Iuml: "\xCF",
|
|
12393
12374
|
Jcirc: "\u0134",
|
|
12394
12375
|
Jcy: "\u0419",
|
|
12395
|
-
Jfr: "\
|
|
12396
|
-
Jopf: "\
|
|
12397
|
-
Jscr: "\
|
|
12376
|
+
Jfr: "\uD835\uDD0D",
|
|
12377
|
+
Jopf: "\uD835\uDD41",
|
|
12378
|
+
Jscr: "\uD835\uDCA5",
|
|
12398
12379
|
Jsercy: "\u0408",
|
|
12399
12380
|
Jukcy: "\u0404",
|
|
12400
12381
|
KHcy: "\u0425",
|
|
@@ -12402,9 +12383,9 @@ var MarkdownPlugin = function() {
|
|
|
12402
12383
|
Kappa: "\u039A",
|
|
12403
12384
|
Kcedil: "\u0136",
|
|
12404
12385
|
Kcy: "\u041A",
|
|
12405
|
-
Kfr: "\
|
|
12406
|
-
Kopf: "\
|
|
12407
|
-
Kscr: "\
|
|
12386
|
+
Kfr: "\uD835\uDD0E",
|
|
12387
|
+
Kopf: "\uD835\uDD42",
|
|
12388
|
+
Kscr: "\uD835\uDCA6",
|
|
12408
12389
|
LJcy: "\u0409",
|
|
12409
12390
|
LT: "<",
|
|
12410
12391
|
Lacute: "\u0139",
|
|
@@ -12447,7 +12428,7 @@ var MarkdownPlugin = function() {
|
|
|
12447
12428
|
LessLess: "\u2AA1",
|
|
12448
12429
|
LessSlantEqual: "\u2A7D",
|
|
12449
12430
|
LessTilde: "\u2272",
|
|
12450
|
-
Lfr: "\
|
|
12431
|
+
Lfr: "\uD835\uDD0F",
|
|
12451
12432
|
Ll: "\u22D8",
|
|
12452
12433
|
Lleftarrow: "\u21DA",
|
|
12453
12434
|
Lmidot: "\u013F",
|
|
@@ -12457,7 +12438,7 @@ var MarkdownPlugin = function() {
|
|
|
12457
12438
|
Longleftarrow: "\u27F8",
|
|
12458
12439
|
Longleftrightarrow: "\u27FA",
|
|
12459
12440
|
Longrightarrow: "\u27F9",
|
|
12460
|
-
Lopf: "\
|
|
12441
|
+
Lopf: "\uD835\uDD43",
|
|
12461
12442
|
LowerLeftArrow: "\u2199",
|
|
12462
12443
|
LowerRightArrow: "\u2198",
|
|
12463
12444
|
Lscr: "\u2112",
|
|
@@ -12468,9 +12449,9 @@ var MarkdownPlugin = function() {
|
|
|
12468
12449
|
Mcy: "\u041C",
|
|
12469
12450
|
MediumSpace: "\u205F",
|
|
12470
12451
|
Mellintrf: "\u2133",
|
|
12471
|
-
Mfr: "\
|
|
12452
|
+
Mfr: "\uD835\uDD10",
|
|
12472
12453
|
MinusPlus: "\u2213",
|
|
12473
|
-
Mopf: "\
|
|
12454
|
+
Mopf: "\uD835\uDD44",
|
|
12474
12455
|
Mscr: "\u2133",
|
|
12475
12456
|
Mu: "\u039C",
|
|
12476
12457
|
NJcy: "\u040A",
|
|
@@ -12485,7 +12466,7 @@ var MarkdownPlugin = function() {
|
|
|
12485
12466
|
NestedGreaterGreater: "\u226B",
|
|
12486
12467
|
NestedLessLess: "\u226A",
|
|
12487
12468
|
NewLine: "\n",
|
|
12488
|
-
Nfr: "\
|
|
12469
|
+
Nfr: "\uD835\uDD11",
|
|
12489
12470
|
NoBreak: "\u2060",
|
|
12490
12471
|
NonBreakingSpace: "\xA0",
|
|
12491
12472
|
Nopf: "\u2115",
|
|
@@ -12541,7 +12522,7 @@ var MarkdownPlugin = function() {
|
|
|
12541
12522
|
NotTildeFullEqual: "\u2247",
|
|
12542
12523
|
NotTildeTilde: "\u2249",
|
|
12543
12524
|
NotVerticalBar: "\u2224",
|
|
12544
|
-
Nscr: "\
|
|
12525
|
+
Nscr: "\uD835\uDCA9",
|
|
12545
12526
|
Ntilde: "\xD1",
|
|
12546
12527
|
Nu: "\u039D",
|
|
12547
12528
|
OElig: "\u0152",
|
|
@@ -12549,16 +12530,16 @@ var MarkdownPlugin = function() {
|
|
|
12549
12530
|
Ocirc: "\xD4",
|
|
12550
12531
|
Ocy: "\u041E",
|
|
12551
12532
|
Odblac: "\u0150",
|
|
12552
|
-
Ofr: "\
|
|
12533
|
+
Ofr: "\uD835\uDD12",
|
|
12553
12534
|
Ograve: "\xD2",
|
|
12554
12535
|
Omacr: "\u014C",
|
|
12555
12536
|
Omega: "\u03A9",
|
|
12556
12537
|
Omicron: "\u039F",
|
|
12557
|
-
Oopf: "\
|
|
12538
|
+
Oopf: "\uD835\uDD46",
|
|
12558
12539
|
OpenCurlyDoubleQuote: "\u201C",
|
|
12559
12540
|
OpenCurlyQuote: "\u2018",
|
|
12560
12541
|
Or: "\u2A54",
|
|
12561
|
-
Oscr: "\
|
|
12542
|
+
Oscr: "\uD835\uDCAA",
|
|
12562
12543
|
Oslash: "\xD8",
|
|
12563
12544
|
Otilde: "\xD5",
|
|
12564
12545
|
Otimes: "\u2A37",
|
|
@@ -12569,7 +12550,7 @@ var MarkdownPlugin = function() {
|
|
|
12569
12550
|
OverParenthesis: "\u23DC",
|
|
12570
12551
|
PartialD: "\u2202",
|
|
12571
12552
|
Pcy: "\u041F",
|
|
12572
|
-
Pfr: "\
|
|
12553
|
+
Pfr: "\uD835\uDD13",
|
|
12573
12554
|
Phi: "\u03A6",
|
|
12574
12555
|
Pi: "\u03A0",
|
|
12575
12556
|
PlusMinus: "\xB1",
|
|
@@ -12584,12 +12565,12 @@ var MarkdownPlugin = function() {
|
|
|
12584
12565
|
Product: "\u220F",
|
|
12585
12566
|
Proportion: "\u2237",
|
|
12586
12567
|
Proportional: "\u221D",
|
|
12587
|
-
Pscr: "\
|
|
12568
|
+
Pscr: "\uD835\uDCAB",
|
|
12588
12569
|
Psi: "\u03A8",
|
|
12589
12570
|
QUOT: '"',
|
|
12590
|
-
Qfr: "\
|
|
12571
|
+
Qfr: "\uD835\uDD14",
|
|
12591
12572
|
Qopf: "\u211A",
|
|
12592
|
-
Qscr: "\
|
|
12573
|
+
Qscr: "\uD835\uDCAC",
|
|
12593
12574
|
RBarr: "\u2910",
|
|
12594
12575
|
REG: "\xAE",
|
|
12595
12576
|
Racute: "\u0154",
|
|
@@ -12643,14 +12624,14 @@ var MarkdownPlugin = function() {
|
|
|
12643
12624
|
Scedil: "\u015E",
|
|
12644
12625
|
Scirc: "\u015C",
|
|
12645
12626
|
Scy: "\u0421",
|
|
12646
|
-
Sfr: "\
|
|
12627
|
+
Sfr: "\uD835\uDD16",
|
|
12647
12628
|
ShortDownArrow: "\u2193",
|
|
12648
12629
|
ShortLeftArrow: "\u2190",
|
|
12649
12630
|
ShortRightArrow: "\u2192",
|
|
12650
12631
|
ShortUpArrow: "\u2191",
|
|
12651
12632
|
Sigma: "\u03A3",
|
|
12652
12633
|
SmallCircle: "\u2218",
|
|
12653
|
-
Sopf: "\
|
|
12634
|
+
Sopf: "\uD835\uDD4A",
|
|
12654
12635
|
Sqrt: "\u221A",
|
|
12655
12636
|
Square: "\u25A1",
|
|
12656
12637
|
SquareIntersection: "\u2293",
|
|
@@ -12659,7 +12640,7 @@ var MarkdownPlugin = function() {
|
|
|
12659
12640
|
SquareSuperset: "\u2290",
|
|
12660
12641
|
SquareSupersetEqual: "\u2292",
|
|
12661
12642
|
SquareUnion: "\u2294",
|
|
12662
|
-
Sscr: "\
|
|
12643
|
+
Sscr: "\uD835\uDCAE",
|
|
12663
12644
|
Star: "\u22C6",
|
|
12664
12645
|
Sub: "\u22D0",
|
|
12665
12646
|
Subset: "\u22D0",
|
|
@@ -12683,7 +12664,7 @@ var MarkdownPlugin = function() {
|
|
|
12683
12664
|
Tcaron: "\u0164",
|
|
12684
12665
|
Tcedil: "\u0162",
|
|
12685
12666
|
Tcy: "\u0422",
|
|
12686
|
-
Tfr: "\
|
|
12667
|
+
Tfr: "\uD835\uDD17",
|
|
12687
12668
|
Therefore: "\u2234",
|
|
12688
12669
|
Theta: "\u0398",
|
|
12689
12670
|
ThickSpace: "\u205F\u200A",
|
|
@@ -12692,9 +12673,9 @@ var MarkdownPlugin = function() {
|
|
|
12692
12673
|
TildeEqual: "\u2243",
|
|
12693
12674
|
TildeFullEqual: "\u2245",
|
|
12694
12675
|
TildeTilde: "\u2248",
|
|
12695
|
-
Topf: "\
|
|
12676
|
+
Topf: "\uD835\uDD4B",
|
|
12696
12677
|
TripleDot: "\u20DB",
|
|
12697
|
-
Tscr: "\
|
|
12678
|
+
Tscr: "\uD835\uDCAF",
|
|
12698
12679
|
Tstrok: "\u0166",
|
|
12699
12680
|
Uacute: "\xDA",
|
|
12700
12681
|
Uarr: "\u219F",
|
|
@@ -12704,7 +12685,7 @@ var MarkdownPlugin = function() {
|
|
|
12704
12685
|
Ucirc: "\xDB",
|
|
12705
12686
|
Ucy: "\u0423",
|
|
12706
12687
|
Udblac: "\u0170",
|
|
12707
|
-
Ufr: "\
|
|
12688
|
+
Ufr: "\uD835\uDD18",
|
|
12708
12689
|
Ugrave: "\xD9",
|
|
12709
12690
|
Umacr: "\u016A",
|
|
12710
12691
|
UnderBar: "_",
|
|
@@ -12714,7 +12695,7 @@ var MarkdownPlugin = function() {
|
|
|
12714
12695
|
Union: "\u22C3",
|
|
12715
12696
|
UnionPlus: "\u228E",
|
|
12716
12697
|
Uogon: "\u0172",
|
|
12717
|
-
Uopf: "\
|
|
12698
|
+
Uopf: "\uD835\uDD4C",
|
|
12718
12699
|
UpArrow: "\u2191",
|
|
12719
12700
|
UpArrowBar: "\u2912",
|
|
12720
12701
|
UpArrowDownArrow: "\u21C5",
|
|
@@ -12729,7 +12710,7 @@ var MarkdownPlugin = function() {
|
|
|
12729
12710
|
Upsi: "\u03D2",
|
|
12730
12711
|
Upsilon: "\u03A5",
|
|
12731
12712
|
Uring: "\u016E",
|
|
12732
|
-
Uscr: "\
|
|
12713
|
+
Uscr: "\uD835\uDCB0",
|
|
12733
12714
|
Utilde: "\u0168",
|
|
12734
12715
|
Uuml: "\xDC",
|
|
12735
12716
|
VDash: "\u22AB",
|
|
@@ -12745,28 +12726,28 @@ var MarkdownPlugin = function() {
|
|
|
12745
12726
|
VerticalSeparator: "\u2758",
|
|
12746
12727
|
VerticalTilde: "\u2240",
|
|
12747
12728
|
VeryThinSpace: "\u200A",
|
|
12748
|
-
Vfr: "\
|
|
12749
|
-
Vopf: "\
|
|
12750
|
-
Vscr: "\
|
|
12729
|
+
Vfr: "\uD835\uDD19",
|
|
12730
|
+
Vopf: "\uD835\uDD4D",
|
|
12731
|
+
Vscr: "\uD835\uDCB1",
|
|
12751
12732
|
Vvdash: "\u22AA",
|
|
12752
12733
|
Wcirc: "\u0174",
|
|
12753
12734
|
Wedge: "\u22C0",
|
|
12754
|
-
Wfr: "\
|
|
12755
|
-
Wopf: "\
|
|
12756
|
-
Wscr: "\
|
|
12757
|
-
Xfr: "\
|
|
12735
|
+
Wfr: "\uD835\uDD1A",
|
|
12736
|
+
Wopf: "\uD835\uDD4E",
|
|
12737
|
+
Wscr: "\uD835\uDCB2",
|
|
12738
|
+
Xfr: "\uD835\uDD1B",
|
|
12758
12739
|
Xi: "\u039E",
|
|
12759
|
-
Xopf: "\
|
|
12760
|
-
Xscr: "\
|
|
12740
|
+
Xopf: "\uD835\uDD4F",
|
|
12741
|
+
Xscr: "\uD835\uDCB3",
|
|
12761
12742
|
YAcy: "\u042F",
|
|
12762
12743
|
YIcy: "\u0407",
|
|
12763
12744
|
YUcy: "\u042E",
|
|
12764
12745
|
Yacute: "\xDD",
|
|
12765
12746
|
Ycirc: "\u0176",
|
|
12766
12747
|
Ycy: "\u042B",
|
|
12767
|
-
Yfr: "\
|
|
12768
|
-
Yopf: "\
|
|
12769
|
-
Yscr: "\
|
|
12748
|
+
Yfr: "\uD835\uDD1C",
|
|
12749
|
+
Yopf: "\uD835\uDD50",
|
|
12750
|
+
Yscr: "\uD835\uDCB4",
|
|
12770
12751
|
Yuml: "\u0178",
|
|
12771
12752
|
ZHcy: "\u0416",
|
|
12772
12753
|
Zacute: "\u0179",
|
|
@@ -12777,7 +12758,7 @@ var MarkdownPlugin = function() {
|
|
|
12777
12758
|
Zeta: "\u0396",
|
|
12778
12759
|
Zfr: "\u2128",
|
|
12779
12760
|
Zopf: "\u2124",
|
|
12780
|
-
Zscr: "\
|
|
12761
|
+
Zscr: "\uD835\uDCB5",
|
|
12781
12762
|
aacute: "\xE1",
|
|
12782
12763
|
abreve: "\u0103",
|
|
12783
12764
|
ac: "\u223E",
|
|
@@ -12788,7 +12769,7 @@ var MarkdownPlugin = function() {
|
|
|
12788
12769
|
acy: "\u0430",
|
|
12789
12770
|
aelig: "\xE6",
|
|
12790
12771
|
af: "\u2061",
|
|
12791
|
-
afr: "\
|
|
12772
|
+
afr: "\uD835\uDD1E",
|
|
12792
12773
|
agrave: "\xE0",
|
|
12793
12774
|
alefsym: "\u2135",
|
|
12794
12775
|
aleph: "\u2135",
|
|
@@ -12820,7 +12801,7 @@ var MarkdownPlugin = function() {
|
|
|
12820
12801
|
angst: "\xC5",
|
|
12821
12802
|
angzarr: "\u237C",
|
|
12822
12803
|
aogon: "\u0105",
|
|
12823
|
-
aopf: "\
|
|
12804
|
+
aopf: "\uD835\uDD52",
|
|
12824
12805
|
ap: "\u2248",
|
|
12825
12806
|
apE: "\u2A70",
|
|
12826
12807
|
apacir: "\u2A6F",
|
|
@@ -12830,7 +12811,7 @@ var MarkdownPlugin = function() {
|
|
|
12830
12811
|
approx: "\u2248",
|
|
12831
12812
|
approxeq: "\u224A",
|
|
12832
12813
|
aring: "\xE5",
|
|
12833
|
-
ascr: "\
|
|
12814
|
+
ascr: "\uD835\uDCB6",
|
|
12834
12815
|
ast: "*",
|
|
12835
12816
|
asymp: "\u2248",
|
|
12836
12817
|
asympeq: "\u224D",
|
|
@@ -12860,7 +12841,7 @@ var MarkdownPlugin = function() {
|
|
|
12860
12841
|
beta: "\u03B2",
|
|
12861
12842
|
beth: "\u2136",
|
|
12862
12843
|
between: "\u226C",
|
|
12863
|
-
bfr: "\
|
|
12844
|
+
bfr: "\uD835\uDD1F",
|
|
12864
12845
|
bigcap: "\u22C2",
|
|
12865
12846
|
bigcirc: "\u25EF",
|
|
12866
12847
|
bigcup: "\u22C3",
|
|
@@ -12889,7 +12870,7 @@ var MarkdownPlugin = function() {
|
|
|
12889
12870
|
bne: "=\u20E5",
|
|
12890
12871
|
bnequiv: "\u2261\u20E5",
|
|
12891
12872
|
bnot: "\u2310",
|
|
12892
|
-
bopf: "\
|
|
12873
|
+
bopf: "\uD835\uDD53",
|
|
12893
12874
|
bot: "\u22A5",
|
|
12894
12875
|
bottom: "\u22A5",
|
|
12895
12876
|
bowtie: "\u22C8",
|
|
@@ -12940,7 +12921,7 @@ var MarkdownPlugin = function() {
|
|
|
12940
12921
|
bprime: "\u2035",
|
|
12941
12922
|
breve: "\u02D8",
|
|
12942
12923
|
brvbar: "\xA6",
|
|
12943
|
-
bscr: "\
|
|
12924
|
+
bscr: "\uD835\uDCB7",
|
|
12944
12925
|
bsemi: "\u204F",
|
|
12945
12926
|
bsim: "\u223D",
|
|
12946
12927
|
bsime: "\u22CD",
|
|
@@ -12974,7 +12955,7 @@ var MarkdownPlugin = function() {
|
|
|
12974
12955
|
cemptyv: "\u29B2",
|
|
12975
12956
|
cent: "\xA2",
|
|
12976
12957
|
centerdot: "\xB7",
|
|
12977
|
-
cfr: "\
|
|
12958
|
+
cfr: "\uD835\uDD20",
|
|
12978
12959
|
chcy: "\u0447",
|
|
12979
12960
|
check: "\u2713",
|
|
12980
12961
|
checkmark: "\u2713",
|
|
@@ -13008,13 +12989,13 @@ var MarkdownPlugin = function() {
|
|
|
13008
12989
|
cong: "\u2245",
|
|
13009
12990
|
congdot: "\u2A6D",
|
|
13010
12991
|
conint: "\u222E",
|
|
13011
|
-
copf: "\
|
|
12992
|
+
copf: "\uD835\uDD54",
|
|
13012
12993
|
coprod: "\u2210",
|
|
13013
12994
|
copy: "\xA9",
|
|
13014
12995
|
copysr: "\u2117",
|
|
13015
12996
|
crarr: "\u21B5",
|
|
13016
12997
|
cross: "\u2717",
|
|
13017
|
-
cscr: "\
|
|
12998
|
+
cscr: "\uD835\uDCB8",
|
|
13018
12999
|
csub: "\u2ACF",
|
|
13019
13000
|
csube: "\u2AD1",
|
|
13020
13001
|
csup: "\u2AD0",
|
|
@@ -13066,7 +13047,7 @@ var MarkdownPlugin = function() {
|
|
|
13066
13047
|
delta: "\u03B4",
|
|
13067
13048
|
demptyv: "\u29B1",
|
|
13068
13049
|
dfisht: "\u297F",
|
|
13069
|
-
dfr: "\
|
|
13050
|
+
dfr: "\uD835\uDD21",
|
|
13070
13051
|
dharl: "\u21C3",
|
|
13071
13052
|
dharr: "\u21C2",
|
|
13072
13053
|
diam: "\u22C4",
|
|
@@ -13084,7 +13065,7 @@ var MarkdownPlugin = function() {
|
|
|
13084
13065
|
dlcorn: "\u231E",
|
|
13085
13066
|
dlcrop: "\u230D",
|
|
13086
13067
|
dollar: "$",
|
|
13087
|
-
dopf: "\
|
|
13068
|
+
dopf: "\uD835\uDD55",
|
|
13088
13069
|
dot: "\u02D9",
|
|
13089
13070
|
doteq: "\u2250",
|
|
13090
13071
|
doteqdot: "\u2251",
|
|
@@ -13099,7 +13080,7 @@ var MarkdownPlugin = function() {
|
|
|
13099
13080
|
drbkarow: "\u2910",
|
|
13100
13081
|
drcorn: "\u231F",
|
|
13101
13082
|
drcrop: "\u230C",
|
|
13102
|
-
dscr: "\
|
|
13083
|
+
dscr: "\uD835\uDCB9",
|
|
13103
13084
|
dscy: "\u0455",
|
|
13104
13085
|
dsol: "\u29F6",
|
|
13105
13086
|
dstrok: "\u0111",
|
|
@@ -13123,7 +13104,7 @@ var MarkdownPlugin = function() {
|
|
|
13123
13104
|
edot: "\u0117",
|
|
13124
13105
|
ee: "\u2147",
|
|
13125
13106
|
efDot: "\u2252",
|
|
13126
|
-
efr: "\
|
|
13107
|
+
efr: "\uD835\uDD22",
|
|
13127
13108
|
eg: "\u2A9A",
|
|
13128
13109
|
egrave: "\xE8",
|
|
13129
13110
|
egs: "\u2A96",
|
|
@@ -13143,7 +13124,7 @@ var MarkdownPlugin = function() {
|
|
|
13143
13124
|
eng: "\u014B",
|
|
13144
13125
|
ensp: "\u2002",
|
|
13145
13126
|
eogon: "\u0119",
|
|
13146
|
-
eopf: "\
|
|
13127
|
+
eopf: "\uD835\uDD56",
|
|
13147
13128
|
epar: "\u22D5",
|
|
13148
13129
|
eparsl: "\u29E3",
|
|
13149
13130
|
eplus: "\u2A71",
|
|
@@ -13179,14 +13160,14 @@ var MarkdownPlugin = function() {
|
|
|
13179
13160
|
ffilig: "\uFB03",
|
|
13180
13161
|
fflig: "\uFB00",
|
|
13181
13162
|
ffllig: "\uFB04",
|
|
13182
|
-
ffr: "\
|
|
13163
|
+
ffr: "\uD835\uDD23",
|
|
13183
13164
|
filig: "\uFB01",
|
|
13184
13165
|
fjlig: "fj",
|
|
13185
13166
|
flat: "\u266D",
|
|
13186
13167
|
fllig: "\uFB02",
|
|
13187
13168
|
fltns: "\u25B1",
|
|
13188
13169
|
fnof: "\u0192",
|
|
13189
|
-
fopf: "\
|
|
13170
|
+
fopf: "\uD835\uDD57",
|
|
13190
13171
|
forall: "\u2200",
|
|
13191
13172
|
fork: "\u22D4",
|
|
13192
13173
|
forkv: "\u2AD9",
|
|
@@ -13208,7 +13189,7 @@ var MarkdownPlugin = function() {
|
|
|
13208
13189
|
frac78: "\u215E",
|
|
13209
13190
|
frasl: "\u2044",
|
|
13210
13191
|
frown: "\u2322",
|
|
13211
|
-
fscr: "\
|
|
13192
|
+
fscr: "\uD835\uDCBB",
|
|
13212
13193
|
gE: "\u2267",
|
|
13213
13194
|
gEl: "\u2A8C",
|
|
13214
13195
|
gacute: "\u01F5",
|
|
@@ -13231,7 +13212,7 @@ var MarkdownPlugin = function() {
|
|
|
13231
13212
|
gesdotol: "\u2A84",
|
|
13232
13213
|
gesl: "\u22DB\uFE00",
|
|
13233
13214
|
gesles: "\u2A94",
|
|
13234
|
-
gfr: "\
|
|
13215
|
+
gfr: "\uD835\uDD24",
|
|
13235
13216
|
gg: "\u226B",
|
|
13236
13217
|
ggg: "\u22D9",
|
|
13237
13218
|
gimel: "\u2137",
|
|
@@ -13247,7 +13228,7 @@ var MarkdownPlugin = function() {
|
|
|
13247
13228
|
gneq: "\u2A88",
|
|
13248
13229
|
gneqq: "\u2269",
|
|
13249
13230
|
gnsim: "\u22E7",
|
|
13250
|
-
gopf: "\
|
|
13231
|
+
gopf: "\uD835\uDD58",
|
|
13251
13232
|
grave: "`",
|
|
13252
13233
|
gscr: "\u210A",
|
|
13253
13234
|
gsim: "\u2273",
|
|
@@ -13282,16 +13263,16 @@ var MarkdownPlugin = function() {
|
|
|
13282
13263
|
heartsuit: "\u2665",
|
|
13283
13264
|
hellip: "\u2026",
|
|
13284
13265
|
hercon: "\u22B9",
|
|
13285
|
-
hfr: "\
|
|
13266
|
+
hfr: "\uD835\uDD25",
|
|
13286
13267
|
hksearow: "\u2925",
|
|
13287
13268
|
hkswarow: "\u2926",
|
|
13288
13269
|
hoarr: "\u21FF",
|
|
13289
13270
|
homtht: "\u223B",
|
|
13290
13271
|
hookleftarrow: "\u21A9",
|
|
13291
13272
|
hookrightarrow: "\u21AA",
|
|
13292
|
-
hopf: "\
|
|
13273
|
+
hopf: "\uD835\uDD59",
|
|
13293
13274
|
horbar: "\u2015",
|
|
13294
|
-
hscr: "\
|
|
13275
|
+
hscr: "\uD835\uDCBD",
|
|
13295
13276
|
hslash: "\u210F",
|
|
13296
13277
|
hstrok: "\u0127",
|
|
13297
13278
|
hybull: "\u2043",
|
|
@@ -13303,7 +13284,7 @@ var MarkdownPlugin = function() {
|
|
|
13303
13284
|
iecy: "\u0435",
|
|
13304
13285
|
iexcl: "\xA1",
|
|
13305
13286
|
iff: "\u21D4",
|
|
13306
|
-
ifr: "\
|
|
13287
|
+
ifr: "\uD835\uDD26",
|
|
13307
13288
|
igrave: "\xEC",
|
|
13308
13289
|
ii: "\u2148",
|
|
13309
13290
|
iiiint: "\u2A0C",
|
|
@@ -13331,11 +13312,11 @@ var MarkdownPlugin = function() {
|
|
|
13331
13312
|
intprod: "\u2A3C",
|
|
13332
13313
|
iocy: "\u0451",
|
|
13333
13314
|
iogon: "\u012F",
|
|
13334
|
-
iopf: "\
|
|
13315
|
+
iopf: "\uD835\uDD5A",
|
|
13335
13316
|
iota: "\u03B9",
|
|
13336
13317
|
iprod: "\u2A3C",
|
|
13337
13318
|
iquest: "\xBF",
|
|
13338
|
-
iscr: "\
|
|
13319
|
+
iscr: "\uD835\uDCBE",
|
|
13339
13320
|
isin: "\u2208",
|
|
13340
13321
|
isinE: "\u22F9",
|
|
13341
13322
|
isindot: "\u22F5",
|
|
@@ -13348,22 +13329,22 @@ var MarkdownPlugin = function() {
|
|
|
13348
13329
|
iuml: "\xEF",
|
|
13349
13330
|
jcirc: "\u0135",
|
|
13350
13331
|
jcy: "\u0439",
|
|
13351
|
-
jfr: "\
|
|
13332
|
+
jfr: "\uD835\uDD27",
|
|
13352
13333
|
jmath: "\u0237",
|
|
13353
|
-
jopf: "\
|
|
13354
|
-
jscr: "\
|
|
13334
|
+
jopf: "\uD835\uDD5B",
|
|
13335
|
+
jscr: "\uD835\uDCBF",
|
|
13355
13336
|
jsercy: "\u0458",
|
|
13356
13337
|
jukcy: "\u0454",
|
|
13357
13338
|
kappa: "\u03BA",
|
|
13358
13339
|
kappav: "\u03F0",
|
|
13359
13340
|
kcedil: "\u0137",
|
|
13360
13341
|
kcy: "\u043A",
|
|
13361
|
-
kfr: "\
|
|
13342
|
+
kfr: "\uD835\uDD28",
|
|
13362
13343
|
kgreen: "\u0138",
|
|
13363
13344
|
khcy: "\u0445",
|
|
13364
13345
|
kjcy: "\u045C",
|
|
13365
|
-
kopf: "\
|
|
13366
|
-
kscr: "\
|
|
13346
|
+
kopf: "\uD835\uDD5C",
|
|
13347
|
+
kscr: "\uD835\uDCC0",
|
|
13367
13348
|
lAarr: "\u21DA",
|
|
13368
13349
|
lArr: "\u21D0",
|
|
13369
13350
|
lAtail: "\u291B",
|
|
@@ -13441,7 +13422,7 @@ var MarkdownPlugin = function() {
|
|
|
13441
13422
|
lesssim: "\u2272",
|
|
13442
13423
|
lfisht: "\u297C",
|
|
13443
13424
|
lfloor: "\u230A",
|
|
13444
|
-
lfr: "\
|
|
13425
|
+
lfr: "\uD835\uDD29",
|
|
13445
13426
|
lg: "\u2276",
|
|
13446
13427
|
lgE: "\u2A91",
|
|
13447
13428
|
lhard: "\u21BD",
|
|
@@ -13474,7 +13455,7 @@ var MarkdownPlugin = function() {
|
|
|
13474
13455
|
looparrowleft: "\u21AB",
|
|
13475
13456
|
looparrowright: "\u21AC",
|
|
13476
13457
|
lopar: "\u2985",
|
|
13477
|
-
lopf: "\
|
|
13458
|
+
lopf: "\uD835\uDD5D",
|
|
13478
13459
|
loplus: "\u2A2D",
|
|
13479
13460
|
lotimes: "\u2A34",
|
|
13480
13461
|
lowast: "\u2217",
|
|
@@ -13491,7 +13472,7 @@ var MarkdownPlugin = function() {
|
|
|
13491
13472
|
lrm: "\u200E",
|
|
13492
13473
|
lrtri: "\u22BF",
|
|
13493
13474
|
lsaquo: "\u2039",
|
|
13494
|
-
lscr: "\
|
|
13475
|
+
lscr: "\uD835\uDCC1",
|
|
13495
13476
|
lsh: "\u21B0",
|
|
13496
13477
|
lsim: "\u2272",
|
|
13497
13478
|
lsime: "\u2A8D",
|
|
@@ -13531,7 +13512,7 @@ var MarkdownPlugin = function() {
|
|
|
13531
13512
|
mcy: "\u043C",
|
|
13532
13513
|
mdash: "\u2014",
|
|
13533
13514
|
measuredangle: "\u2221",
|
|
13534
|
-
mfr: "\
|
|
13515
|
+
mfr: "\uD835\uDD2A",
|
|
13535
13516
|
mho: "\u2127",
|
|
13536
13517
|
micro: "\xB5",
|
|
13537
13518
|
mid: "\u2223",
|
|
@@ -13546,9 +13527,9 @@ var MarkdownPlugin = function() {
|
|
|
13546
13527
|
mldr: "\u2026",
|
|
13547
13528
|
mnplus: "\u2213",
|
|
13548
13529
|
models: "\u22A7",
|
|
13549
|
-
mopf: "\
|
|
13530
|
+
mopf: "\uD835\uDD5E",
|
|
13550
13531
|
mp: "\u2213",
|
|
13551
|
-
mscr: "\
|
|
13532
|
+
mscr: "\uD835\uDCC2",
|
|
13552
13533
|
mstpos: "\u223E",
|
|
13553
13534
|
mu: "\u03BC",
|
|
13554
13535
|
multimap: "\u22B8",
|
|
@@ -13597,7 +13578,7 @@ var MarkdownPlugin = function() {
|
|
|
13597
13578
|
nesim: "\u2242\u0338",
|
|
13598
13579
|
nexist: "\u2204",
|
|
13599
13580
|
nexists: "\u2204",
|
|
13600
|
-
nfr: "\
|
|
13581
|
+
nfr: "\uD835\uDD2B",
|
|
13601
13582
|
ngE: "\u2267\u0338",
|
|
13602
13583
|
nge: "\u2271",
|
|
13603
13584
|
ngeq: "\u2271",
|
|
@@ -13632,7 +13613,7 @@ var MarkdownPlugin = function() {
|
|
|
13632
13613
|
nltri: "\u22EA",
|
|
13633
13614
|
nltrie: "\u22EC",
|
|
13634
13615
|
nmid: "\u2224",
|
|
13635
|
-
nopf: "\
|
|
13616
|
+
nopf: "\uD835\uDD5F",
|
|
13636
13617
|
not: "\xAC",
|
|
13637
13618
|
notin: "\u2209",
|
|
13638
13619
|
notinE: "\u22F9\u0338",
|
|
@@ -13664,7 +13645,7 @@ var MarkdownPlugin = function() {
|
|
|
13664
13645
|
nsc: "\u2281",
|
|
13665
13646
|
nsccue: "\u22E1",
|
|
13666
13647
|
nsce: "\u2AB0\u0338",
|
|
13667
|
-
nscr: "\
|
|
13648
|
+
nscr: "\uD835\uDCC3",
|
|
13668
13649
|
nshortmid: "\u2224",
|
|
13669
13650
|
nshortparallel: "\u2226",
|
|
13670
13651
|
nsim: "\u2241",
|
|
@@ -13731,7 +13712,7 @@ var MarkdownPlugin = function() {
|
|
|
13731
13712
|
odsold: "\u29BC",
|
|
13732
13713
|
oelig: "\u0153",
|
|
13733
13714
|
ofcir: "\u29BF",
|
|
13734
|
-
ofr: "\
|
|
13715
|
+
ofr: "\uD835\uDD2C",
|
|
13735
13716
|
ogon: "\u02DB",
|
|
13736
13717
|
ograve: "\xF2",
|
|
13737
13718
|
ogt: "\u29C1",
|
|
@@ -13748,7 +13729,7 @@ var MarkdownPlugin = function() {
|
|
|
13748
13729
|
omicron: "\u03BF",
|
|
13749
13730
|
omid: "\u29B6",
|
|
13750
13731
|
ominus: "\u2296",
|
|
13751
|
-
oopf: "\
|
|
13732
|
+
oopf: "\uD835\uDD60",
|
|
13752
13733
|
opar: "\u29B7",
|
|
13753
13734
|
operp: "\u29B9",
|
|
13754
13735
|
oplus: "\u2295",
|
|
@@ -13783,7 +13764,7 @@ var MarkdownPlugin = function() {
|
|
|
13783
13764
|
permil: "\u2030",
|
|
13784
13765
|
perp: "\u22A5",
|
|
13785
13766
|
pertenk: "\u2031",
|
|
13786
|
-
pfr: "\
|
|
13767
|
+
pfr: "\uD835\uDD2D",
|
|
13787
13768
|
phi: "\u03C6",
|
|
13788
13769
|
phiv: "\u03D5",
|
|
13789
13770
|
phmmat: "\u2133",
|
|
@@ -13806,7 +13787,7 @@ var MarkdownPlugin = function() {
|
|
|
13806
13787
|
plustwo: "\u2A27",
|
|
13807
13788
|
pm: "\xB1",
|
|
13808
13789
|
pointint: "\u2A15",
|
|
13809
|
-
popf: "\
|
|
13790
|
+
popf: "\uD835\uDD61",
|
|
13810
13791
|
pound: "\xA3",
|
|
13811
13792
|
pr: "\u227A",
|
|
13812
13793
|
prE: "\u2AB3",
|
|
@@ -13834,14 +13815,14 @@ var MarkdownPlugin = function() {
|
|
|
13834
13815
|
propto: "\u221D",
|
|
13835
13816
|
prsim: "\u227E",
|
|
13836
13817
|
prurel: "\u22B0",
|
|
13837
|
-
pscr: "\
|
|
13818
|
+
pscr: "\uD835\uDCC5",
|
|
13838
13819
|
psi: "\u03C8",
|
|
13839
13820
|
puncsp: "\u2008",
|
|
13840
|
-
qfr: "\
|
|
13821
|
+
qfr: "\uD835\uDD2E",
|
|
13841
13822
|
qint: "\u2A0C",
|
|
13842
|
-
qopf: "\
|
|
13823
|
+
qopf: "\uD835\uDD62",
|
|
13843
13824
|
qprime: "\u2057",
|
|
13844
|
-
qscr: "\
|
|
13825
|
+
qscr: "\uD835\uDCC6",
|
|
13845
13826
|
quaternions: "\u210D",
|
|
13846
13827
|
quatint: "\u2A16",
|
|
13847
13828
|
quest: "?",
|
|
@@ -13901,7 +13882,7 @@ var MarkdownPlugin = function() {
|
|
|
13901
13882
|
reg: "\xAE",
|
|
13902
13883
|
rfisht: "\u297D",
|
|
13903
13884
|
rfloor: "\u230B",
|
|
13904
|
-
rfr: "\
|
|
13885
|
+
rfr: "\uD835\uDD2F",
|
|
13905
13886
|
rhard: "\u21C1",
|
|
13906
13887
|
rharu: "\u21C0",
|
|
13907
13888
|
rharul: "\u296C",
|
|
@@ -13928,7 +13909,7 @@ var MarkdownPlugin = function() {
|
|
|
13928
13909
|
roarr: "\u21FE",
|
|
13929
13910
|
robrk: "\u27E7",
|
|
13930
13911
|
ropar: "\u2986",
|
|
13931
|
-
ropf: "\
|
|
13912
|
+
ropf: "\uD835\uDD63",
|
|
13932
13913
|
roplus: "\u2A2E",
|
|
13933
13914
|
rotimes: "\u2A35",
|
|
13934
13915
|
rpar: ")",
|
|
@@ -13936,7 +13917,7 @@ var MarkdownPlugin = function() {
|
|
|
13936
13917
|
rppolint: "\u2A12",
|
|
13937
13918
|
rrarr: "\u21C9",
|
|
13938
13919
|
rsaquo: "\u203A",
|
|
13939
|
-
rscr: "\
|
|
13920
|
+
rscr: "\uD835\uDCC7",
|
|
13940
13921
|
rsh: "\u21B1",
|
|
13941
13922
|
rsqb: "]",
|
|
13942
13923
|
rsquo: "\u2019",
|
|
@@ -13978,7 +13959,7 @@ var MarkdownPlugin = function() {
|
|
|
13978
13959
|
setminus: "\u2216",
|
|
13979
13960
|
setmn: "\u2216",
|
|
13980
13961
|
sext: "\u2736",
|
|
13981
|
-
sfr: "\
|
|
13962
|
+
sfr: "\uD835\uDD30",
|
|
13982
13963
|
sfrown: "\u2322",
|
|
13983
13964
|
sharp: "\u266F",
|
|
13984
13965
|
shchcy: "\u0449",
|
|
@@ -14013,7 +13994,7 @@ var MarkdownPlugin = function() {
|
|
|
14013
13994
|
sol: "/",
|
|
14014
13995
|
solb: "\u29C4",
|
|
14015
13996
|
solbar: "\u233F",
|
|
14016
|
-
sopf: "\
|
|
13997
|
+
sopf: "\uD835\uDD64",
|
|
14017
13998
|
spades: "\u2660",
|
|
14018
13999
|
spadesuit: "\u2660",
|
|
14019
14000
|
spar: "\u2225",
|
|
@@ -14034,7 +14015,7 @@ var MarkdownPlugin = function() {
|
|
|
14034
14015
|
squarf: "\u25AA",
|
|
14035
14016
|
squf: "\u25AA",
|
|
14036
14017
|
srarr: "\u2192",
|
|
14037
|
-
sscr: "\
|
|
14018
|
+
sscr: "\uD835\uDCC8",
|
|
14038
14019
|
ssetmn: "\u2216",
|
|
14039
14020
|
ssmile: "\u2323",
|
|
14040
14021
|
sstarf: "\u22C6",
|
|
@@ -14109,7 +14090,7 @@ var MarkdownPlugin = function() {
|
|
|
14109
14090
|
tcy: "\u0442",
|
|
14110
14091
|
tdot: "\u20DB",
|
|
14111
14092
|
telrec: "\u2315",
|
|
14112
|
-
tfr: "\
|
|
14093
|
+
tfr: "\uD835\uDD31",
|
|
14113
14094
|
there4: "\u2234",
|
|
14114
14095
|
therefore: "\u2234",
|
|
14115
14096
|
theta: "\u03B8",
|
|
@@ -14131,7 +14112,7 @@ var MarkdownPlugin = function() {
|
|
|
14131
14112
|
top: "\u22A4",
|
|
14132
14113
|
topbot: "\u2336",
|
|
14133
14114
|
topcir: "\u2AF1",
|
|
14134
|
-
topf: "\
|
|
14115
|
+
topf: "\uD835\uDD65",
|
|
14135
14116
|
topfork: "\u2ADA",
|
|
14136
14117
|
tosa: "\u2929",
|
|
14137
14118
|
tprime: "\u2034",
|
|
@@ -14150,7 +14131,7 @@ var MarkdownPlugin = function() {
|
|
|
14150
14131
|
trisb: "\u29CD",
|
|
14151
14132
|
tritime: "\u2A3B",
|
|
14152
14133
|
trpezium: "\u23E2",
|
|
14153
|
-
tscr: "\
|
|
14134
|
+
tscr: "\uD835\uDCC9",
|
|
14154
14135
|
tscy: "\u0446",
|
|
14155
14136
|
tshcy: "\u045B",
|
|
14156
14137
|
tstrok: "\u0167",
|
|
@@ -14169,7 +14150,7 @@ var MarkdownPlugin = function() {
|
|
|
14169
14150
|
udblac: "\u0171",
|
|
14170
14151
|
udhar: "\u296E",
|
|
14171
14152
|
ufisht: "\u297E",
|
|
14172
|
-
ufr: "\
|
|
14153
|
+
ufr: "\uD835\uDD32",
|
|
14173
14154
|
ugrave: "\xF9",
|
|
14174
14155
|
uharl: "\u21BF",
|
|
14175
14156
|
uharr: "\u21BE",
|
|
@@ -14181,7 +14162,7 @@ var MarkdownPlugin = function() {
|
|
|
14181
14162
|
umacr: "\u016B",
|
|
14182
14163
|
uml: "\xA8",
|
|
14183
14164
|
uogon: "\u0173",
|
|
14184
|
-
uopf: "\
|
|
14165
|
+
uopf: "\uD835\uDD66",
|
|
14185
14166
|
uparrow: "\u2191",
|
|
14186
14167
|
updownarrow: "\u2195",
|
|
14187
14168
|
upharpoonleft: "\u21BF",
|
|
@@ -14196,7 +14177,7 @@ var MarkdownPlugin = function() {
|
|
|
14196
14177
|
urcrop: "\u230E",
|
|
14197
14178
|
uring: "\u016F",
|
|
14198
14179
|
urtri: "\u25F9",
|
|
14199
|
-
uscr: "\
|
|
14180
|
+
uscr: "\uD835\uDCCA",
|
|
14200
14181
|
utdot: "\u22F0",
|
|
14201
14182
|
utilde: "\u0169",
|
|
14202
14183
|
utri: "\u25B5",
|
|
@@ -14233,14 +14214,14 @@ var MarkdownPlugin = function() {
|
|
|
14233
14214
|
vellip: "\u22EE",
|
|
14234
14215
|
verbar: "|",
|
|
14235
14216
|
vert: "|",
|
|
14236
|
-
vfr: "\
|
|
14217
|
+
vfr: "\uD835\uDD33",
|
|
14237
14218
|
vltri: "\u22B2",
|
|
14238
14219
|
vnsub: "\u2282\u20D2",
|
|
14239
14220
|
vnsup: "\u2283\u20D2",
|
|
14240
|
-
vopf: "\
|
|
14221
|
+
vopf: "\uD835\uDD67",
|
|
14241
14222
|
vprop: "\u221D",
|
|
14242
14223
|
vrtri: "\u22B3",
|
|
14243
|
-
vscr: "\
|
|
14224
|
+
vscr: "\uD835\uDCCB",
|
|
14244
14225
|
vsubnE: "\u2ACB\uFE00",
|
|
14245
14226
|
vsubne: "\u228A\uFE00",
|
|
14246
14227
|
vsupnE: "\u2ACC\uFE00",
|
|
@@ -14251,17 +14232,17 @@ var MarkdownPlugin = function() {
|
|
|
14251
14232
|
wedge: "\u2227",
|
|
14252
14233
|
wedgeq: "\u2259",
|
|
14253
14234
|
weierp: "\u2118",
|
|
14254
|
-
wfr: "\
|
|
14255
|
-
wopf: "\
|
|
14235
|
+
wfr: "\uD835\uDD34",
|
|
14236
|
+
wopf: "\uD835\uDD68",
|
|
14256
14237
|
wp: "\u2118",
|
|
14257
14238
|
wr: "\u2240",
|
|
14258
14239
|
wreath: "\u2240",
|
|
14259
|
-
wscr: "\
|
|
14240
|
+
wscr: "\uD835\uDCCC",
|
|
14260
14241
|
xcap: "\u22C2",
|
|
14261
14242
|
xcirc: "\u25EF",
|
|
14262
14243
|
xcup: "\u22C3",
|
|
14263
14244
|
xdtri: "\u25BD",
|
|
14264
|
-
xfr: "\
|
|
14245
|
+
xfr: "\uD835\uDD35",
|
|
14265
14246
|
xhArr: "\u27FA",
|
|
14266
14247
|
xharr: "\u27F7",
|
|
14267
14248
|
xi: "\u03BE",
|
|
@@ -14270,12 +14251,12 @@ var MarkdownPlugin = function() {
|
|
|
14270
14251
|
xmap: "\u27FC",
|
|
14271
14252
|
xnis: "\u22FB",
|
|
14272
14253
|
xodot: "\u2A00",
|
|
14273
|
-
xopf: "\
|
|
14254
|
+
xopf: "\uD835\uDD69",
|
|
14274
14255
|
xoplus: "\u2A01",
|
|
14275
14256
|
xotime: "\u2A02",
|
|
14276
14257
|
xrArr: "\u27F9",
|
|
14277
14258
|
xrarr: "\u27F6",
|
|
14278
|
-
xscr: "\
|
|
14259
|
+
xscr: "\uD835\uDCCD",
|
|
14279
14260
|
xsqcup: "\u2A06",
|
|
14280
14261
|
xuplus: "\u2A04",
|
|
14281
14262
|
xutri: "\u25B3",
|
|
@@ -14286,10 +14267,10 @@ var MarkdownPlugin = function() {
|
|
|
14286
14267
|
ycirc: "\u0177",
|
|
14287
14268
|
ycy: "\u044B",
|
|
14288
14269
|
yen: "\xA5",
|
|
14289
|
-
yfr: "\
|
|
14270
|
+
yfr: "\uD835\uDD36",
|
|
14290
14271
|
yicy: "\u0457",
|
|
14291
|
-
yopf: "\
|
|
14292
|
-
yscr: "\
|
|
14272
|
+
yopf: "\uD835\uDD6A",
|
|
14273
|
+
yscr: "\uD835\uDCCE",
|
|
14293
14274
|
yucy: "\u044E",
|
|
14294
14275
|
yuml: "\xFF",
|
|
14295
14276
|
zacute: "\u017A",
|
|
@@ -14298,19 +14279,19 @@ var MarkdownPlugin = function() {
|
|
|
14298
14279
|
zdot: "\u017C",
|
|
14299
14280
|
zeetrf: "\u2128",
|
|
14300
14281
|
zeta: "\u03B6",
|
|
14301
|
-
zfr: "\
|
|
14282
|
+
zfr: "\uD835\uDD37",
|
|
14302
14283
|
zhcy: "\u0436",
|
|
14303
14284
|
zigrarr: "\u21DD",
|
|
14304
|
-
zopf: "\
|
|
14305
|
-
zscr: "\
|
|
14285
|
+
zopf: "\uD835\uDD6B",
|
|
14286
|
+
zscr: "\uD835\uDCCF",
|
|
14306
14287
|
zwj: "\u200D",
|
|
14307
14288
|
zwnj: "\u200C"
|
|
14308
14289
|
};
|
|
14309
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/decode-named-character-reference@1.0
|
|
14290
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js
|
|
14310
14291
|
var own = {}.hasOwnProperty;
|
|
14311
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-combine-extensions@2.0.
|
|
14292
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js
|
|
14312
14293
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
14313
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-character@2.1.
|
|
14294
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js
|
|
14314
14295
|
var asciiAlpha = regexCheck(/[A-Za-z]/);
|
|
14315
14296
|
var asciiAlphanumeric = regexCheck(/[\dA-Za-z]/);
|
|
14316
14297
|
var asciiAtext = regexCheck(/[#-'*+\--9=?A-Z^-~]/);
|
|
@@ -14319,88 +14300,79 @@ var MarkdownPlugin = function() {
|
|
|
14319
14300
|
var asciiPunctuation = regexCheck(/[!-/:-@[-`{-~]/);
|
|
14320
14301
|
var unicodePunctuation = regexCheck(RegExp("\\p{P}|\\p{S}", "u"));
|
|
14321
14302
|
var unicodeWhitespace = regexCheck(/\s/);
|
|
14322
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14303
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js
|
|
14323
14304
|
var content = {
|
|
14324
14305
|
tokenize: initializeContent
|
|
14325
14306
|
};
|
|
14326
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14307
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js
|
|
14327
14308
|
var document = {
|
|
14328
14309
|
tokenize: initializeDocument
|
|
14329
14310
|
};
|
|
14330
14311
|
var containerConstruct = {
|
|
14331
14312
|
tokenize: tokenizeContainer
|
|
14332
14313
|
};
|
|
14333
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-
|
|
14334
|
-
var asciiAlpha2 = regexCheck2(/[A-Za-z]/);
|
|
14335
|
-
var asciiAlphanumeric2 = regexCheck2(/[\dA-Za-z]/);
|
|
14336
|
-
var asciiAtext2 = regexCheck2(/[#-'*+\--9=?A-Z^-~]/);
|
|
14337
|
-
var asciiDigit2 = regexCheck2(/\d/);
|
|
14338
|
-
var asciiHexDigit2 = regexCheck2(/[\dA-Fa-f]/);
|
|
14339
|
-
var asciiPunctuation2 = regexCheck2(/[!-/:-@[-`{-~]/);
|
|
14340
|
-
var unicodePunctuation2 = regexCheck2(RegExp("\\p{P}|\\p{S}", "u"));
|
|
14341
|
-
var unicodeWhitespace2 = regexCheck2(/\s/);
|
|
14342
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/attention.js
|
|
14314
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js
|
|
14343
14315
|
var attention = {
|
|
14344
14316
|
name: "attention",
|
|
14345
|
-
|
|
14346
|
-
|
|
14317
|
+
resolveAll: resolveAllAttention,
|
|
14318
|
+
tokenize: tokenizeAttention
|
|
14347
14319
|
};
|
|
14348
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14320
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js
|
|
14349
14321
|
var autolink = {
|
|
14350
14322
|
name: "autolink",
|
|
14351
14323
|
tokenize: tokenizeAutolink
|
|
14352
14324
|
};
|
|
14353
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14325
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js
|
|
14354
14326
|
var blankLine = {
|
|
14355
|
-
|
|
14356
|
-
|
|
14327
|
+
partial: true,
|
|
14328
|
+
tokenize: tokenizeBlankLine
|
|
14357
14329
|
};
|
|
14358
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14330
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js
|
|
14359
14331
|
var blockQuote = {
|
|
14360
|
-
name: "blockQuote",
|
|
14361
|
-
tokenize: tokenizeBlockQuoteStart,
|
|
14362
14332
|
continuation: {
|
|
14363
14333
|
tokenize: tokenizeBlockQuoteContinuation
|
|
14364
14334
|
},
|
|
14365
|
-
exit: exit
|
|
14335
|
+
exit: exit,
|
|
14336
|
+
name: "blockQuote",
|
|
14337
|
+
tokenize: tokenizeBlockQuoteStart
|
|
14366
14338
|
};
|
|
14367
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14339
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js
|
|
14368
14340
|
var characterEscape = {
|
|
14369
14341
|
name: "characterEscape",
|
|
14370
14342
|
tokenize: tokenizeCharacterEscape
|
|
14371
14343
|
};
|
|
14372
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14344
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js
|
|
14373
14345
|
var characterReference = {
|
|
14374
14346
|
name: "characterReference",
|
|
14375
14347
|
tokenize: tokenizeCharacterReference
|
|
14376
14348
|
};
|
|
14377
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14349
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js
|
|
14378
14350
|
var nonLazyContinuation = {
|
|
14379
|
-
|
|
14380
|
-
|
|
14351
|
+
partial: true,
|
|
14352
|
+
tokenize: tokenizeNonLazyContinuation
|
|
14381
14353
|
};
|
|
14382
14354
|
var codeFenced = {
|
|
14355
|
+
concrete: true,
|
|
14383
14356
|
name: "codeFenced",
|
|
14384
|
-
tokenize: tokenizeCodeFenced
|
|
14385
|
-
concrete: true
|
|
14357
|
+
tokenize: tokenizeCodeFenced
|
|
14386
14358
|
};
|
|
14387
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14359
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js
|
|
14388
14360
|
var codeIndented = {
|
|
14389
14361
|
name: "codeIndented",
|
|
14390
14362
|
tokenize: tokenizeCodeIndented
|
|
14391
14363
|
};
|
|
14392
14364
|
var furtherStart = {
|
|
14393
|
-
|
|
14394
|
-
|
|
14365
|
+
partial: true,
|
|
14366
|
+
tokenize: tokenizeFurtherStart
|
|
14395
14367
|
};
|
|
14396
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14368
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js
|
|
14397
14369
|
var codeText = {
|
|
14398
14370
|
name: "codeText",
|
|
14399
|
-
|
|
14371
|
+
previous: previous,
|
|
14400
14372
|
resolve: resolveCodeText,
|
|
14401
|
-
|
|
14373
|
+
tokenize: tokenizeCodeText
|
|
14402
14374
|
};
|
|
14403
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.0
|
|
14375
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js
|
|
14404
14376
|
var SpliceBuffer = /*#__PURE__*/ function() {
|
|
14405
14377
|
function SpliceBuffer(initial) {
|
|
14406
14378
|
_class_call_check(this, SpliceBuffer);
|
|
@@ -14601,36 +14573,36 @@ var MarkdownPlugin = function() {
|
|
|
14601
14573
|
]);
|
|
14602
14574
|
return SpliceBuffer;
|
|
14603
14575
|
}();
|
|
14604
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14576
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js
|
|
14605
14577
|
var content2 = {
|
|
14606
|
-
|
|
14607
|
-
|
|
14578
|
+
resolve: resolveContent,
|
|
14579
|
+
tokenize: tokenizeContent
|
|
14608
14580
|
};
|
|
14609
14581
|
var continuationConstruct = {
|
|
14610
|
-
|
|
14611
|
-
|
|
14582
|
+
partial: true,
|
|
14583
|
+
tokenize: tokenizeContinuation
|
|
14612
14584
|
};
|
|
14613
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14585
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js
|
|
14614
14586
|
var definition = {
|
|
14615
14587
|
name: "definition",
|
|
14616
14588
|
tokenize: tokenizeDefinition
|
|
14617
14589
|
};
|
|
14618
14590
|
var titleBefore = {
|
|
14619
|
-
|
|
14620
|
-
|
|
14591
|
+
partial: true,
|
|
14592
|
+
tokenize: tokenizeTitleBefore
|
|
14621
14593
|
};
|
|
14622
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14594
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js
|
|
14623
14595
|
var hardBreakEscape = {
|
|
14624
14596
|
name: "hardBreakEscape",
|
|
14625
14597
|
tokenize: tokenizeHardBreakEscape
|
|
14626
14598
|
};
|
|
14627
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14599
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js
|
|
14628
14600
|
var headingAtx = {
|
|
14629
14601
|
name: "headingAtx",
|
|
14630
|
-
|
|
14631
|
-
|
|
14602
|
+
resolve: resolveHeadingAtx,
|
|
14603
|
+
tokenize: tokenizeHeadingAtx
|
|
14632
14604
|
};
|
|
14633
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-html-tag-name@2.0.
|
|
14605
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js
|
|
14634
14606
|
var htmlBlockNames = [
|
|
14635
14607
|
"address",
|
|
14636
14608
|
"article",
|
|
@@ -14701,32 +14673,32 @@ var MarkdownPlugin = function() {
|
|
|
14701
14673
|
"style",
|
|
14702
14674
|
"textarea"
|
|
14703
14675
|
];
|
|
14704
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14676
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js
|
|
14705
14677
|
var htmlFlow = {
|
|
14678
|
+
concrete: true,
|
|
14706
14679
|
name: "htmlFlow",
|
|
14707
|
-
tokenize: tokenizeHtmlFlow,
|
|
14708
14680
|
resolveTo: resolveToHtmlFlow,
|
|
14709
|
-
|
|
14681
|
+
tokenize: tokenizeHtmlFlow
|
|
14710
14682
|
};
|
|
14711
14683
|
var blankLineBefore = {
|
|
14712
|
-
|
|
14713
|
-
|
|
14684
|
+
partial: true,
|
|
14685
|
+
tokenize: tokenizeBlankLineBefore
|
|
14714
14686
|
};
|
|
14715
14687
|
var nonLazyContinuationStart = {
|
|
14716
|
-
|
|
14717
|
-
|
|
14688
|
+
partial: true,
|
|
14689
|
+
tokenize: tokenizeNonLazyContinuationStart
|
|
14718
14690
|
};
|
|
14719
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14691
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js
|
|
14720
14692
|
var htmlText = {
|
|
14721
14693
|
name: "htmlText",
|
|
14722
14694
|
tokenize: tokenizeHtmlText
|
|
14723
14695
|
};
|
|
14724
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14696
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js
|
|
14725
14697
|
var labelEnd = {
|
|
14726
14698
|
name: "labelEnd",
|
|
14727
|
-
|
|
14699
|
+
resolveAll: resolveAllLabelEnd,
|
|
14728
14700
|
resolveTo: resolveToLabelEnd,
|
|
14729
|
-
|
|
14701
|
+
tokenize: tokenizeLabelEnd
|
|
14730
14702
|
};
|
|
14731
14703
|
var resourceConstruct = {
|
|
14732
14704
|
tokenize: tokenizeResource
|
|
@@ -14737,62 +14709,62 @@ var MarkdownPlugin = function() {
|
|
|
14737
14709
|
var referenceCollapsedConstruct = {
|
|
14738
14710
|
tokenize: tokenizeReferenceCollapsed
|
|
14739
14711
|
};
|
|
14740
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14712
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js
|
|
14741
14713
|
var labelStartImage = {
|
|
14742
14714
|
name: "labelStartImage",
|
|
14743
|
-
|
|
14744
|
-
|
|
14715
|
+
resolveAll: labelEnd.resolveAll,
|
|
14716
|
+
tokenize: tokenizeLabelStartImage
|
|
14745
14717
|
};
|
|
14746
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14718
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js
|
|
14747
14719
|
var labelStartLink = {
|
|
14748
14720
|
name: "labelStartLink",
|
|
14749
|
-
|
|
14750
|
-
|
|
14721
|
+
resolveAll: labelEnd.resolveAll,
|
|
14722
|
+
tokenize: tokenizeLabelStartLink
|
|
14751
14723
|
};
|
|
14752
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14724
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js
|
|
14753
14725
|
var lineEnding = {
|
|
14754
14726
|
name: "lineEnding",
|
|
14755
14727
|
tokenize: tokenizeLineEnding
|
|
14756
14728
|
};
|
|
14757
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14729
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js
|
|
14758
14730
|
var thematicBreak = {
|
|
14759
14731
|
name: "thematicBreak",
|
|
14760
14732
|
tokenize: tokenizeThematicBreak
|
|
14761
14733
|
};
|
|
14762
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14734
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js
|
|
14763
14735
|
var list = {
|
|
14764
|
-
name: "list",
|
|
14765
|
-
tokenize: tokenizeListStart,
|
|
14766
14736
|
continuation: {
|
|
14767
14737
|
tokenize: tokenizeListContinuation
|
|
14768
14738
|
},
|
|
14769
|
-
exit: tokenizeListEnd
|
|
14739
|
+
exit: tokenizeListEnd,
|
|
14740
|
+
name: "list",
|
|
14741
|
+
tokenize: tokenizeListStart
|
|
14770
14742
|
};
|
|
14771
14743
|
var listItemPrefixWhitespaceConstruct = {
|
|
14772
|
-
|
|
14773
|
-
|
|
14744
|
+
partial: true,
|
|
14745
|
+
tokenize: tokenizeListItemPrefixWhitespace
|
|
14774
14746
|
};
|
|
14775
14747
|
var indentConstruct = {
|
|
14776
|
-
|
|
14777
|
-
|
|
14748
|
+
partial: true,
|
|
14749
|
+
tokenize: tokenizeIndent
|
|
14778
14750
|
};
|
|
14779
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.
|
|
14751
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js
|
|
14780
14752
|
var setextUnderline = {
|
|
14781
14753
|
name: "setextUnderline",
|
|
14782
|
-
|
|
14783
|
-
|
|
14754
|
+
resolveTo: resolveToSetextUnderline,
|
|
14755
|
+
tokenize: tokenizeSetextUnderline
|
|
14784
14756
|
};
|
|
14785
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14757
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js
|
|
14786
14758
|
var flow = {
|
|
14787
14759
|
tokenize: initializeFlow
|
|
14788
14760
|
};
|
|
14789
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14761
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js
|
|
14790
14762
|
var resolver = {
|
|
14791
14763
|
resolveAll: createResolver()
|
|
14792
14764
|
};
|
|
14793
14765
|
var string = initializeFactory("string");
|
|
14794
14766
|
var text = initializeFactory("text");
|
|
14795
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14767
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/constructs.js
|
|
14796
14768
|
var constructs_exports = {};
|
|
14797
14769
|
__export(constructs_exports, {
|
|
14798
14770
|
attentionMarkers: function() {
|
|
@@ -14858,9 +14830,9 @@ var MarkdownPlugin = function() {
|
|
|
14858
14830
|
var disable = {
|
|
14859
14831
|
null: []
|
|
14860
14832
|
};
|
|
14861
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.
|
|
14833
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/preprocess.js
|
|
14862
14834
|
var search = /[\0\t\n\r]/g;
|
|
14863
|
-
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-string@2.0.
|
|
14835
|
+
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js
|
|
14864
14836
|
var characterEscapeOrReference = /\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;
|
|
14865
14837
|
// ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/mdast-util-from-markdown@2.0.0/node_modules/mdast-util-from-markdown/lib/index.js
|
|
14866
14838
|
var own2 = {}.hasOwnProperty;
|