@player-ui/markdown-plugin 0.14.0-next.0 → 0.14.0-next.2

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
- return true;
292
- } catch (e) {
293
- return false;
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, g, _ = {
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 && typeof node2.value === "object" && typeof ((_node2_value = node2.value) === null || _node2_value === void 0 ? void 0 : _node2_value.id) === "string") {
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
  };
@@ -1543,12 +1527,12 @@ var MarkdownPlugin = function() {
1543
1527
  return result.join("");
1544
1528
  };
1545
1529
  var node = function node(value) {
1546
- return Boolean(value && typeof value === "object");
1530
+ return Boolean(value && (typeof value === "undefined" ? "undefined" : _type_of(value)) === "object");
1547
1531
  };
1548
1532
  var decodeNamedCharacterReference = function decodeNamedCharacterReference(value) {
1549
1533
  return own.call(characterEntities, value) ? characterEntities[value] : false;
1550
1534
  };
1551
- var splice = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-chunked@2.0.0/node_modules/micromark-util-chunked/index.js
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
1552
1536
  function splice(list2, start, remove, items) {
1553
1537
  var end = list2.length;
1554
1538
  var chunkStart = 0;
@@ -1592,8 +1576,7 @@ var MarkdownPlugin = function() {
1592
1576
  return all2;
1593
1577
  };
1594
1578
  var syntaxExtension = function syntaxExtension(all2, extension2) {
1595
- var hook;
1596
- for(hook in extension2){
1579
+ var _loop = function() {
1597
1580
  var maybe = hasOwnProperty.call(all2, hook) ? all2[hook] : void 0;
1598
1581
  var left = maybe || (all2[hook] = {});
1599
1582
  var right = extension2[hook];
@@ -1608,7 +1591,9 @@ var MarkdownPlugin = function() {
1608
1591
  ] : []);
1609
1592
  }
1610
1593
  }
1611
- }
1594
+ };
1595
+ var hook;
1596
+ for(hook in extension2)_loop();
1612
1597
  };
1613
1598
  var constructs = function constructs(existing, list2) {
1614
1599
  var index2 = -1;
@@ -1619,7 +1604,7 @@ var MarkdownPlugin = function() {
1619
1604
  }
1620
1605
  splice(existing, 0, 0, before);
1621
1606
  };
1622
- var decodeNumericCharacterReference = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-numeric-character-reference@2.0.1/node_modules/micromark-util-decode-numeric-character-reference/index.js
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
1623
1608
  function decodeNumericCharacterReference(value, base) {
1624
1609
  var code = Number.parseInt(value, base);
1625
1610
  if (// C0 except for HT, LF, FF, CR, space.
@@ -1632,7 +1617,7 @@ var MarkdownPlugin = function() {
1632
1617
  }
1633
1618
  return String.fromCodePoint(code);
1634
1619
  };
1635
- var normalizeIdentifier = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-normalize-identifier@2.0.0/node_modules/micromark-util-normalize-identifier/index.js
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
1636
1621
  function normalizeIdentifier(value) {
1637
1622
  return value.replace(/[\t\n\r ]+/g, " ").replace(/^ | $/g, "").toLowerCase().toUpperCase();
1638
1623
  };
@@ -1656,7 +1641,7 @@ var MarkdownPlugin = function() {
1656
1641
  return code !== null && code > -1 && regex.test(String.fromCharCode(code));
1657
1642
  }
1658
1643
  };
1659
- var factorySpace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-space@2.0.0/node_modules/micromark-factory-space/index.js
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
1660
1645
  function factorySpace(effects, ok, type, max) {
1661
1646
  var limit = max ? max - 1 : Number.POSITIVE_INFINITY;
1662
1647
  var size = 0;
@@ -1757,7 +1742,7 @@ var MarkdownPlugin = function() {
1757
1742
  exitContainers(continued);
1758
1743
  var index2 = indexBeforeExits;
1759
1744
  while(index2 < self.events.length){
1760
- self.events[index2][1].end = Object.assign({}, point3);
1745
+ self.events[index2][1].end = _object_spread({}, point3);
1761
1746
  index2++;
1762
1747
  }
1763
1748
  splice(self.events, indexBeforeFlow + 1, 0, self.events.slice(indexBeforeExits));
@@ -1810,9 +1795,9 @@ var MarkdownPlugin = function() {
1810
1795
  }
1811
1796
  childFlow = childFlow || self.parser.flow(self.now());
1812
1797
  effects.enter("chunkFlow", {
1798
+ _tokenizer: childFlow,
1813
1799
  contentType: "flow",
1814
- previous: childToken,
1815
- _tokenizer: childFlow
1800
+ previous: childToken
1816
1801
  });
1817
1802
  return flowContinue(code);
1818
1803
  }
@@ -1833,9 +1818,9 @@ var MarkdownPlugin = function() {
1833
1818
  effects.consume(code);
1834
1819
  return flowContinue;
1835
1820
  }
1836
- function writeToChild(token, eof) {
1821
+ function writeToChild(token, endOfFile) {
1837
1822
  var stream = self.sliceStream(token);
1838
- if (eof) stream.push(null);
1823
+ if (endOfFile) stream.push(null);
1839
1824
  token.previous = childToken;
1840
1825
  if (childToken) childToken.next = token;
1841
1826
  childToken = token;
@@ -1867,7 +1852,7 @@ var MarkdownPlugin = function() {
1867
1852
  exitContainers(continued);
1868
1853
  index2 = indexBeforeExits;
1869
1854
  while(index2 < self.events.length){
1870
- self.events[index2][1].end = Object.assign({}, point3);
1855
+ self.events[index2][1].end = _object_spread({}, point3);
1871
1856
  index2++;
1872
1857
  }
1873
1858
  splice(self.events, indexBeforeFlow + 1, 0, self.events.slice(indexBeforeExits));
@@ -1895,25 +1880,16 @@ var MarkdownPlugin = function() {
1895
1880
  var tokenizeContainer = function tokenizeContainer(effects, ok, nok) {
1896
1881
  return factorySpace(effects, effects.attempt(this.parser.constructs.document, ok, nok), "linePrefix", this.parser.constructs.disable.null.includes("codeIndented") ? void 0 : 4);
1897
1882
  };
1898
- var markdownLineEndingOrSpace2 = function markdownLineEndingOrSpace2(code) {
1899
- return code !== null && (code < 0 || code === 32);
1900
- };
1901
- var regexCheck2 = function regexCheck2(regex) {
1902
- return check;
1903
- function check(code) {
1904
- return code !== null && code > -1 && regex.test(String.fromCharCode(code));
1905
- }
1906
- };
1907
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
1908
1884
  function classifyCharacter(code) {
1909
- if (code === null || markdownLineEndingOrSpace2(code) || unicodeWhitespace2(code)) {
1885
+ if (code === null || markdownLineEndingOrSpace(code) || unicodeWhitespace(code)) {
1910
1886
  return 1;
1911
1887
  }
1912
- if (unicodePunctuation2(code)) {
1888
+ if (unicodePunctuation(code)) {
1913
1889
  return 2;
1914
1890
  }
1915
1891
  };
1916
- var resolveAll = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-resolve-all@2.0.0/node_modules/micromark-util-resolve-all/index.js
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
1917
1893
  function resolveAll(constructs2, events, context) {
1918
1894
  var called = [];
1919
1895
  var index2 = -1;
@@ -1946,32 +1922,32 @@ var MarkdownPlugin = function() {
1946
1922
  continue;
1947
1923
  }
1948
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;
1949
- var start = Object.assign({}, events[open][1].end);
1950
- var end = Object.assign({}, events[index2][1].start);
1925
+ var start = _object_spread({}, events[open][1].end);
1926
+ var end = _object_spread({}, events[index2][1].start);
1951
1927
  movePoint(start, -use);
1952
1928
  movePoint(end, use);
1953
1929
  openingSequence = {
1954
1930
  type: use > 1 ? "strongSequence" : "emphasisSequence",
1955
1931
  start: start,
1956
- end: Object.assign({}, events[open][1].end)
1932
+ end: _object_spread({}, events[open][1].end)
1957
1933
  };
1958
1934
  closingSequence = {
1959
1935
  type: use > 1 ? "strongSequence" : "emphasisSequence",
1960
- start: Object.assign({}, events[index2][1].start),
1936
+ start: _object_spread({}, events[index2][1].start),
1961
1937
  end: end
1962
1938
  };
1963
1939
  text3 = {
1964
1940
  type: use > 1 ? "strongText" : "emphasisText",
1965
- start: Object.assign({}, events[open][1].end),
1966
- end: Object.assign({}, events[index2][1].start)
1941
+ start: _object_spread({}, events[open][1].end),
1942
+ end: _object_spread({}, events[index2][1].start)
1967
1943
  };
1968
1944
  group = {
1969
1945
  type: use > 1 ? "strong" : "emphasis",
1970
- start: Object.assign({}, openingSequence.start),
1971
- end: Object.assign({}, closingSequence.end)
1946
+ start: _object_spread({}, openingSequence.start),
1947
+ end: _object_spread({}, closingSequence.end)
1972
1948
  };
1973
- events[open][1].end = Object.assign({}, openingSequence.start);
1974
- events[index2][1].start = Object.assign({}, closingSequence.end);
1949
+ events[open][1].end = _object_spread({}, openingSequence.start);
1950
+ events[index2][1].start = _object_spread({}, closingSequence.end);
1975
1951
  nextEvents = [];
1976
1952
  if (events[open][1].end.offset - events[open][1].start.offset) {
1977
1953
  nextEvents = push(nextEvents, [
@@ -2328,8 +2304,8 @@ var MarkdownPlugin = function() {
2328
2304
  var tokenizeCodeFenced = function tokenizeCodeFenced(effects, ok, nok) {
2329
2305
  var self = this;
2330
2306
  var closeStart = {
2331
- tokenize: tokenizeCloseStart,
2332
- partial: true
2307
+ partial: true,
2308
+ tokenize: tokenizeCloseStart
2333
2309
  };
2334
2310
  var initialPrefix = 0;
2335
2311
  var sizeOpen = 0;
@@ -2671,7 +2647,7 @@ var MarkdownPlugin = function() {
2671
2647
  }
2672
2648
  }
2673
2649
  };
2674
- var subtokenize = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.0.1/node_modules/micromark-util-subtokenize/index.js
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
2675
2651
  function subtokenize(eventsArray) {
2676
2652
  var jumps = {};
2677
2653
  var index2 = -1;
@@ -2725,12 +2701,12 @@ var MarkdownPlugin = function() {
2725
2701
  otherEvent[1].type = "lineEnding";
2726
2702
  lineIndex = otherIndex;
2727
2703
  }
2728
- } else {
2704
+ } else if (otherEvent[1].type === "linePrefix" || otherEvent[1].type === "listItemIndent") {} else {
2729
2705
  break;
2730
2706
  }
2731
2707
  }
2732
2708
  if (lineIndex) {
2733
- event[1].end = Object.assign({}, events.get(lineIndex)[1].start);
2709
+ event[1].end = _object_spread({}, events.get(lineIndex)[1].start);
2734
2710
  parameters = events.slice(lineIndex, index2);
2735
2711
  parameters.unshift(event);
2736
2712
  events.splice(lineIndex, index2 - lineIndex + 1, parameters);
@@ -2745,7 +2721,13 @@ var MarkdownPlugin = function() {
2745
2721
  var context = events.get(eventIndex)[2];
2746
2722
  var startPosition = eventIndex - 1;
2747
2723
  var startPositions = [];
2748
- var tokenizer = token._tokenizer || context.parser[token.contentType](token.start);
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
+ }
2749
2731
  var childEvents = tokenizer.events;
2750
2732
  var jumps = [];
2751
2733
  var gaps = {};
@@ -2877,7 +2859,7 @@ var MarkdownPlugin = function() {
2877
2859
  return effects.interrupt(self.parser.constructs.flow, nok, ok)(code);
2878
2860
  }
2879
2861
  };
2880
- var factoryDestination = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-destination@2.0.0/node_modules/micromark-factory-destination/index.js
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
2881
2863
  function factoryDestination(effects, ok, nok, type, literalType, literalMarkerType, rawType, stringType, max) {
2882
2864
  var limit = max || Number.POSITIVE_INFINITY;
2883
2865
  var balance = 0;
@@ -2968,7 +2950,7 @@ var MarkdownPlugin = function() {
2968
2950
  return raw(code);
2969
2951
  }
2970
2952
  };
2971
- var factoryLabel = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-label@2.0.0/node_modules/micromark-factory-label/index.js
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
2972
2954
  function factoryLabel(effects, ok, nok, type, markerType, stringType) {
2973
2955
  var self = this;
2974
2956
  var size = 0;
@@ -3027,7 +3009,7 @@ var MarkdownPlugin = function() {
3027
3009
  return labelInside(code);
3028
3010
  }
3029
3011
  };
3030
- var factoryTitle = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-title@2.0.0/node_modules/micromark-factory-title/index.js
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
3031
3013
  function factoryTitle(effects, ok, nok, type, markerType, stringType) {
3032
3014
  var marker;
3033
3015
  return start;
@@ -3088,7 +3070,7 @@ var MarkdownPlugin = function() {
3088
3070
  return inside(code);
3089
3071
  }
3090
3072
  };
3091
- var factoryWhitespace = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-factory-whitespace@2.0.0/node_modules/micromark-factory-whitespace/index.js
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
3092
3074
  function factoryWhitespace(effects, ok) {
3093
3075
  var seen;
3094
3076
  return start;
@@ -3950,14 +3932,19 @@ var MarkdownPlugin = function() {
3950
3932
  };
3951
3933
  var resolveAllLabelEnd = function resolveAllLabelEnd(events) {
3952
3934
  var index2 = -1;
3935
+ var newEvents = [];
3953
3936
  while(++index2 < events.length){
3954
3937
  var token = events[index2][1];
3938
+ newEvents.push(events[index2]);
3955
3939
  if (token.type === "labelImage" || token.type === "labelLink" || token.type === "labelEnd") {
3956
- events.splice(index2 + 1, token.type === "labelImage" ? 4 : 2);
3940
+ var offset = token.type === "labelImage" ? 4 : 2;
3957
3941
  token.type = "data";
3958
- index2++;
3942
+ index2 += offset;
3959
3943
  }
3960
3944
  }
3945
+ if (events.length !== newEvents.length) {
3946
+ splice(events, 0, events.length, newEvents);
3947
+ }
3961
3948
  return events;
3962
3949
  };
3963
3950
  var resolveToLabelEnd = function resolveToLabelEnd(events, context) {
@@ -3990,18 +3977,18 @@ var MarkdownPlugin = function() {
3990
3977
  }
3991
3978
  var group = {
3992
3979
  type: events[open][1].type === "labelLink" ? "link" : "image",
3993
- start: Object.assign({}, events[open][1].start),
3994
- end: Object.assign({}, events[events.length - 1][1].end)
3980
+ start: _object_spread({}, events[open][1].start),
3981
+ end: _object_spread({}, events[events.length - 1][1].end)
3995
3982
  };
3996
3983
  var label = {
3997
3984
  type: "label",
3998
- start: Object.assign({}, events[open][1].start),
3999
- end: Object.assign({}, events[close][1].end)
3985
+ start: _object_spread({}, events[open][1].start),
3986
+ end: _object_spread({}, events[close][1].end)
4000
3987
  };
4001
3988
  var text3 = {
4002
3989
  type: "labelText",
4003
- start: Object.assign({}, events[open + offset + 2][1].end),
4004
- end: Object.assign({}, events[close - 2][1].start)
3990
+ start: _object_spread({}, events[open + offset + 2][1].end),
3991
+ end: _object_spread({}, events[close - 2][1].start)
4005
3992
  };
4006
3993
  media = [
4007
3994
  [
@@ -4390,8 +4377,8 @@ var MarkdownPlugin = function() {
4390
4377
  }
4391
4378
  var heading = {
4392
4379
  type: "setextHeading",
4393
- start: Object.assign({}, events[text3][1].start),
4394
- end: Object.assign({}, events[events.length - 1][1].end)
4380
+ start: _object_spread({}, events[content3][1].start),
4381
+ end: _object_spread({}, events[events.length - 1][1].end)
4395
4382
  };
4396
4383
  events[text3][1].type = "setextHeadingText";
4397
4384
  if (definition2) {
@@ -4405,7 +4392,7 @@ var MarkdownPlugin = function() {
4405
4392
  events[content3][1],
4406
4393
  context
4407
4394
  ]);
4408
- events[content3][1].end = Object.assign({}, events[definition2][1].end);
4395
+ events[content3][1].end = _object_spread({}, events[definition2][1].end);
4409
4396
  } else {
4410
4397
  events[content3][1] = heading;
4411
4398
  }
@@ -4487,8 +4474,8 @@ var MarkdownPlugin = function() {
4487
4474
  };
4488
4475
  var initializeFactory = function initializeFactory(field) {
4489
4476
  return {
4490
- tokenize: initializeText,
4491
- resolveAll: createResolver(field === "text" ? resolveAllLineSuffixes : void 0)
4477
+ resolveAll: createResolver(field === "text" ? resolveAllLineSuffixes : void 0),
4478
+ tokenize: initializeText
4492
4479
  };
4493
4480
  function initializeText(effects) {
4494
4481
  var self = this;
@@ -4584,19 +4571,22 @@ var MarkdownPlugin = function() {
4584
4571
  break;
4585
4572
  }
4586
4573
  }
4574
+ if (context._contentTypeTextTrailing && eventIndex === events.length) {
4575
+ size = 0;
4576
+ }
4587
4577
  if (size) {
4588
4578
  var token = {
4589
4579
  type: eventIndex === events.length || tabs || size < 2 ? "lineSuffix" : "hardBreakTrailing",
4590
4580
  start: {
4581
+ _bufferIndex: index2 ? bufferIndex : data.start._bufferIndex + bufferIndex,
4582
+ _index: data.start._index + index2,
4591
4583
  line: data.end.line,
4592
4584
  column: data.end.column - size,
4593
- offset: data.end.offset - size,
4594
- _index: data.start._index + index2,
4595
- _bufferIndex: index2 ? bufferIndex : data.start._bufferIndex + bufferIndex
4585
+ offset: data.end.offset - size
4596
4586
  },
4597
- end: Object.assign({}, data.end)
4587
+ end: _object_spread({}, data.end)
4598
4588
  };
4599
- data.end = Object.assign({}, token.start);
4589
+ data.end = _object_spread({}, token.start);
4600
4590
  if (data.start.offset === data.end.offset) {
4601
4591
  Object.assign(data, token);
4602
4592
  } else {
@@ -4617,41 +4607,40 @@ var MarkdownPlugin = function() {
4617
4607
  }
4618
4608
  return events;
4619
4609
  };
4620
- var createTokenizer = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/create-tokenizer.js
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
4621
4611
  function createTokenizer(parser, initialize, from) {
4622
- var point3 = Object.assign(from ? Object.assign({}, from) : {
4623
- line: 1,
4624
- column: 1,
4625
- offset: 0
4626
- }, {
4612
+ var point3 = {
4613
+ _bufferIndex: -1,
4627
4614
  _index: 0,
4628
- _bufferIndex: -1
4629
- });
4615
+ line: from && from.line || 1,
4616
+ column: from && from.column || 1,
4617
+ offset: from && from.offset || 0
4618
+ };
4630
4619
  var columnStart = {};
4631
4620
  var resolveAllConstructs = [];
4632
4621
  var chunks = [];
4633
4622
  var stack = [];
4634
4623
  var consumed = true;
4635
4624
  var effects = {
4625
+ attempt: constructFactory(onsuccessfulconstruct),
4626
+ check: constructFactory(onsuccessfulcheck),
4636
4627
  consume: consume,
4637
4628
  enter: enter,
4638
4629
  exit: exit2,
4639
- attempt: constructFactory(onsuccessfulconstruct),
4640
- check: constructFactory(onsuccessfulcheck),
4641
4630
  interrupt: constructFactory(onsuccessfulcheck, {
4642
4631
  interrupt: true
4643
4632
  })
4644
4633
  };
4645
4634
  var context = {
4646
- previous: null,
4647
4635
  code: null,
4648
4636
  containerState: {},
4637
+ defineSkip: defineSkip,
4649
4638
  events: [],
4639
+ now: now,
4650
4640
  parser: parser,
4651
- sliceStream: sliceStream,
4641
+ previous: null,
4652
4642
  sliceSerialize: sliceSerialize,
4653
- now: now,
4654
- defineSkip: defineSkip,
4643
+ sliceStream: sliceStream,
4655
4644
  write: write
4656
4645
  };
4657
4646
  var state = initialize.tokenize.call(context, effects);
@@ -4677,13 +4666,13 @@ var MarkdownPlugin = function() {
4677
4666
  return sliceChunks(chunks, token);
4678
4667
  }
4679
4668
  function now() {
4680
- var line = point3.line, column = point3.column, offset = point3.offset, _index = point3._index, _bufferIndex = point3._bufferIndex;
4669
+ var _bufferIndex = point3._bufferIndex, _index = point3._index, line = point3.line, column = point3.column, offset = point3.offset;
4681
4670
  return {
4671
+ _bufferIndex: _bufferIndex,
4672
+ _index: _index,
4682
4673
  line: line,
4683
4674
  column: column,
4684
- offset: offset,
4685
- _index: _index,
4686
- _bufferIndex: _bufferIndex
4675
+ offset: offset
4687
4676
  };
4688
4677
  }
4689
4678
  function defineSkip(value) {
@@ -4726,7 +4715,9 @@ var MarkdownPlugin = function() {
4726
4715
  point3._index++;
4727
4716
  } else {
4728
4717
  point3._bufferIndex++;
4729
- if (point3._bufferIndex === chunks[point3._index].length) {
4718
+ if (point3._bufferIndex === // Points w/ non-negative `_bufferIndex` reference
4719
+ // strings.
4720
+ /** @type {string} */ chunks[point3._index].length) {
4730
4721
  point3._bufferIndex = -1;
4731
4722
  point3._index++;
4732
4723
  }
@@ -4769,18 +4760,18 @@ var MarkdownPlugin = function() {
4769
4760
  var constructIndex;
4770
4761
  var currentConstruct;
4771
4762
  var info;
4772
- return Array.isArray(constructs2) ? handleListOfConstructs(constructs2) : "tokenize" in constructs2 ? // @ts-expect-error Looks like a construct.
4763
+ return Array.isArray(constructs2) ? /* c8 ignore next 1 */ handleListOfConstructs(constructs2) : "tokenize" in constructs2 ? // Looks like a construct.
4773
4764
  handleListOfConstructs([
4774
- constructs2
4765
+ /** @type {Construct} */ constructs2
4775
4766
  ]) : handleMapOfConstructs(constructs2);
4776
4767
  function handleMapOfConstructs(map) {
4777
4768
  return start;
4778
4769
  function start(code) {
4779
- var def = code !== null && map[code];
4770
+ var left = code !== null && map[code];
4780
4771
  var all2 = code !== null && map.null;
4781
4772
  var list2 = // To do: add more extension tests.
4782
- /* c8 ignore next 2 */ _to_consumable_array(Array.isArray(def) ? def : def ? [
4783
- def
4773
+ /* c8 ignore next 2 */ _to_consumable_array(Array.isArray(left) ? left : left ? [
4774
+ left
4784
4775
  ] : []).concat(_to_consumable_array(Array.isArray(all2) ? all2 : all2 ? [
4785
4776
  all2
4786
4777
  ] : []));
@@ -4845,8 +4836,8 @@ var MarkdownPlugin = function() {
4845
4836
  var startEventsIndex = context.events.length;
4846
4837
  var startStack = Array.from(stack);
4847
4838
  return {
4848
- restore: restore,
4849
- from: startEventsIndex
4839
+ from: startEventsIndex,
4840
+ restore: restore
4850
4841
  };
4851
4842
  function restore() {
4852
4843
  point3 = startPoint;
@@ -4936,19 +4927,19 @@ var MarkdownPlugin = function() {
4936
4927
  }
4937
4928
  return result.join("");
4938
4929
  };
4939
- var parse3 = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/parse.js
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
4940
4931
  function parse3(options) {
4941
4932
  var settings = options || {};
4942
4933
  var constructs2 = /** @type {FullNormalizedExtension} */ combineExtensions([
4943
4934
  constructs_exports
4944
4935
  ].concat(_to_consumable_array(settings.extensions || [])));
4945
4936
  var parser = {
4946
- defined: [],
4947
- lazy: {},
4948
4937
  constructs: constructs2,
4949
4938
  content: create(content),
4939
+ defined: [],
4950
4940
  document: create(document),
4951
4941
  flow: create(flow),
4942
+ lazy: {},
4952
4943
  string: create(string),
4953
4944
  text: create(text)
4954
4945
  };
@@ -4960,7 +4951,7 @@ var MarkdownPlugin = function() {
4960
4951
  }
4961
4952
  }
4962
4953
  };
4963
- var postprocess = // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/postprocess.js
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
4964
4955
  function postprocess(events) {
4965
4956
  while(!subtokenize(events)){}
4966
4957
  return events;
@@ -5062,7 +5053,7 @@ var MarkdownPlugin = function() {
5062
5053
  };
5063
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
5064
5055
  function stringifyPosition(value) {
5065
- if (!value || typeof value !== "object") {
5056
+ if (!value || (typeof value === "undefined" ? "undefined" : _type_of(value)) !== "object") {
5066
5057
  return "";
5067
5058
  }
5068
5059
  if ("position" in value || "type" in value) {
@@ -5859,7 +5850,7 @@ var MarkdownPlugin = function() {
5859
5850
  });
5860
5851
  };
5861
5852
  var __copyProps = function(to, from, except, desc) {
5862
- if (from && typeof from === "object" || typeof from === "function") {
5853
+ if (from && (typeof from === "undefined" ? "undefined" : _type_of(from)) === "object" || typeof from === "function") {
5863
5854
  var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
5864
5855
  try {
5865
5856
  var _loop = function() {
@@ -5914,15 +5905,16 @@ var MarkdownPlugin = function() {
5914
5905
  exports.toError = exports.NestedError = void 0;
5915
5906
  var NestedError4 = /*#__PURE__*/ function(Error1) {
5916
5907
  _inherits(_NestedError, Error1);
5917
- var _super = _create_super(_NestedError);
5918
5908
  function _NestedError(message) {
5919
5909
  for(var _len = arguments.length, innerErrors = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
5920
5910
  innerErrors[_key - 1] = arguments[_key];
5921
5911
  }
5922
5912
  _class_call_check(this, _NestedError);
5923
5913
  var _this;
5924
- _this = _super.call(this, message);
5925
- var thisErrorReport = _NestedError.getErrorReport(_assert_this_initialized(_this));
5914
+ _this = _call_super(this, _NestedError, [
5915
+ message
5916
+ ]);
5917
+ var thisErrorReport = _NestedError.getErrorReport(_this);
5926
5918
  if (innerErrors.length === 1) {
5927
5919
  var innerError = toError(innerErrors[0]);
5928
5920
  _this.innerErrors = [
@@ -6058,7 +6050,7 @@ var MarkdownPlugin = function() {
6058
6050
  return out;
6059
6051
  }
6060
6052
  function isObject(o) {
6061
- return o != null && typeof o === "object";
6053
+ return o != null && (typeof o === "undefined" ? "undefined" : _type_of(o)) === "object";
6062
6054
  }
6063
6055
  function addLast2(array, val) {
6064
6056
  if (Array.isArray(val)) return array.concat(val);
@@ -6401,7 +6393,7 @@ var MarkdownPlugin = function() {
6401
6393
  else return 0;
6402
6394
  }
6403
6395
  }();
6404
- if (typeof module === "object") module.exports = SortedArray2;
6396
+ if ((typeof module === "undefined" ? "undefined" : _type_of(module)) === "object") module.exports = SortedArray2;
6405
6397
  if (typeof define === "function" && define.amd) define(function() {
6406
6398
  return SortedArray2;
6407
6399
  });
@@ -6598,10 +6590,9 @@ var MarkdownPlugin = function() {
6598
6590
  }();
6599
6591
  var SyncHook = /*#__PURE__*/ function(Hook) {
6600
6592
  _inherits(SyncHook, Hook);
6601
- var _super = _create_super(SyncHook);
6602
6593
  function SyncHook() {
6603
6594
  _class_call_check(this, SyncHook);
6604
- return _super.apply(this, arguments);
6595
+ return _call_super(this, SyncHook, arguments);
6605
6596
  }
6606
6597
  _create_class(SyncHook, [
6607
6598
  {
@@ -6634,10 +6625,9 @@ var MarkdownPlugin = function() {
6634
6625
  }(Hook);
6635
6626
  var SyncBailHook = /*#__PURE__*/ function(Hook) {
6636
6627
  _inherits(SyncBailHook, Hook);
6637
- var _super = _create_super(SyncBailHook);
6638
6628
  function SyncBailHook() {
6639
6629
  _class_call_check(this, SyncBailHook);
6640
- return _super.apply(this, arguments);
6630
+ return _call_super(this, SyncBailHook, arguments);
6641
6631
  }
6642
6632
  _create_class(SyncBailHook, [
6643
6633
  {
@@ -6669,10 +6659,9 @@ var MarkdownPlugin = function() {
6669
6659
  }(Hook);
6670
6660
  var SyncWaterfallHook = /*#__PURE__*/ function(Hook) {
6671
6661
  _inherits(SyncWaterfallHook, Hook);
6672
- var _super = _create_super(SyncWaterfallHook);
6673
6662
  function SyncWaterfallHook() {
6674
6663
  _class_call_check(this, SyncWaterfallHook);
6675
- return _super.apply(this, arguments);
6664
+ return _call_super(this, SyncWaterfallHook, arguments);
6676
6665
  }
6677
6666
  _create_class(SyncWaterfallHook, [
6678
6667
  {
@@ -6734,7 +6723,7 @@ var MarkdownPlugin = function() {
6734
6723
  for(var _iterator = foo[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
6735
6724
  len = _step.value;
6736
6725
  tmp = len;
6737
- if (tmp && typeof tmp === "object") {
6726
+ if (tmp && (typeof tmp === "undefined" ? "undefined" : _type_of(tmp)) === "object") {
6738
6727
  tmp = find(bar, tmp);
6739
6728
  if (!tmp) return false;
6740
6729
  }
@@ -6765,7 +6754,7 @@ var MarkdownPlugin = function() {
6765
6754
  for(var _iterator1 = foo[Symbol.iterator](), _step1; !(_iteratorNormalCompletion1 = (_step1 = _iterator1.next()).done); _iteratorNormalCompletion1 = true){
6766
6755
  len = _step1.value;
6767
6756
  tmp = len[0];
6768
- if (tmp && typeof tmp === "object") {
6757
+ if (tmp && (typeof tmp === "undefined" ? "undefined" : _type_of(tmp)) === "object") {
6769
6758
  tmp = find(bar, tmp);
6770
6759
  if (!tmp) return false;
6771
6760
  }
@@ -6804,7 +6793,7 @@ var MarkdownPlugin = function() {
6804
6793
  }
6805
6794
  return len === -1;
6806
6795
  }
6807
- if (!ctor || typeof foo === "object") {
6796
+ if (!ctor || (typeof foo === "undefined" ? "undefined" : _type_of(foo)) === "object") {
6808
6797
  len = 0;
6809
6798
  for(ctor in foo){
6810
6799
  if (has.call(foo, ctor) && ++len && !has.call(bar, ctor)) return false;
@@ -6837,7 +6826,7 @@ var MarkdownPlugin = function() {
6837
6826
  var nestedPath = _to_consumable_array(path).concat([
6838
6827
  key
6839
6828
  ]);
6840
- if (typeof val === "object") {
6829
+ if ((typeof val === "undefined" ? "undefined" : _type_of(val)) === "object") {
6841
6830
  traverseObj(val, nestedPath, pairs);
6842
6831
  } else {
6843
6832
  pairs.set(nestedPath, val);
@@ -6878,7 +6867,7 @@ var MarkdownPlugin = function() {
6878
6867
  {
6879
6868
  /** Add match -> value mapping to the registry */ key: "set",
6880
6869
  value: function set(match, value) {
6881
- var matcher = typeof match === "object" ? createMatcher(match) : createBasicMatcher(match);
6870
+ var matcher = (typeof match === "undefined" ? "undefined" : _type_of(match)) === "object" ? createMatcher(match) : createBasicMatcher(match);
6882
6871
  this.store.insert({
6883
6872
  key: match,
6884
6873
  value: value,
@@ -7418,7 +7407,7 @@ var MarkdownPlugin = function() {
7418
7407
  var _this_parseCache_path;
7419
7408
  var ast = (_this_parseCache_path = this.parseCache[path]) !== null && _this_parseCache_path !== void 0 ? _this_parseCache_path : parse(path);
7420
7409
  this.parseCache[path] = ast;
7421
- 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)) {
7422
7411
  var _ast_error;
7423
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."));
7424
7413
  }
@@ -7618,14 +7607,13 @@ var MarkdownPlugin = function() {
7618
7607
  }();
7619
7608
  var DependencyModel = /*#__PURE__*/ function(DependencyTracker) {
7620
7609
  _inherits(DependencyModel, DependencyTracker);
7621
- var _super = _create_super(DependencyModel);
7622
7610
  function DependencyModel(rootModel) {
7623
7611
  _class_call_check(this, DependencyModel);
7624
7612
  var _this;
7625
- _this = _super.call(this);
7613
+ _this = _call_super(this, DependencyModel);
7626
7614
  _this.rootModel = rootModel;
7627
- _this.set = _this.set.bind(_assert_this_initialized(_this));
7628
- _this.get = _this.get.bind(_assert_this_initialized(_this));
7615
+ _this.set = _this.set.bind(_this);
7616
+ _this.get = _this.get.bind(_this);
7629
7617
  return _this;
7630
7618
  }
7631
7619
  _create_class(DependencyModel, [
@@ -8169,23 +8157,20 @@ var MarkdownPlugin = function() {
8169
8157
  * @experimental These Player APIs are in active development and may change. Use with caution
8170
8158
  */ key: "evaluateAsync",
8171
8159
  value: function evaluateAsync(expr, options) {
8160
+ var _this = this;
8172
8161
  if (Array.isArray(expr)) {
8173
- var _this = this;
8174
- return collateAwaitable(expr.map(function() {
8175
- var _ref = _async_to_generator(function(exp) {
8162
+ return collateAwaitable(expr.map(function(exp) {
8163
+ return _async_to_generator(function() {
8176
8164
  return _ts_generator(this, function(_state) {
8177
8165
  return [
8178
8166
  2,
8179
- _this.evaluate(exp, _object_spread_props(_object_spread({}, options), {
8167
+ this.evaluate(exp, _object_spread_props(_object_spread({}, options), {
8180
8168
  async: true
8181
8169
  }))
8182
8170
  ];
8183
8171
  });
8184
- });
8185
- return function(exp) {
8186
- return _ref.apply(this, arguments);
8187
- };
8188
- }())).awaitableThen(function(values) {
8172
+ }).call(_this);
8173
+ })).awaitableThen(function(values) {
8189
8174
  return values.pop();
8190
8175
  });
8191
8176
  } else {
@@ -8961,7 +8946,7 @@ var MarkdownPlugin = function() {
8961
8946
  }
8962
8947
  var parseLocalObject = function(currentValue, objToParse) {
8963
8948
  var path = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
8964
- if (typeof objToParse !== "object" || objToParse === null) {
8949
+ if ((typeof objToParse === "undefined" ? "undefined" : _type_of(objToParse)) !== "object" || objToParse === null) {
8965
8950
  return {
8966
8951
  value: objToParse,
8967
8952
  children: []
@@ -8998,7 +8983,7 @@ var MarkdownPlugin = function() {
8998
8983
  if (newChildren) {
8999
8984
  var _children2;
9000
8985
  (_children2 = children2).push.apply(_children2, _to_consumable_array(newChildren));
9001
- } else if (localValue && typeof localValue === "object") {
8986
+ } else if (localValue && (typeof localValue === "undefined" ? "undefined" : _type_of(localValue)) === "object") {
9002
8987
  var _children21;
9003
8988
  var result = parseLocalObject(accumulation.value, localValue, _to_consumable_array(path).concat([
9004
8989
  localKey
@@ -9156,7 +9141,7 @@ var MarkdownPlugin = function() {
9156
9141
  Object.keys(clonedNode).forEach(function(key) {
9157
9142
  if (key === "parent") return;
9158
9143
  var value = clonedNode[key];
9159
- if (typeof value === "object" && value !== null) {
9144
+ if ((typeof value === "undefined" ? "undefined" : _type_of(value)) === "object" && value !== null) {
9160
9145
  clonedNode[key] = Array.isArray(value) ? _to_consumable_array(value) : _object_spread({}, value);
9161
9146
  }
9162
9147
  });
@@ -9508,7 +9493,7 @@ var MarkdownPlugin = function() {
9508
9493
  for(var _iterator = templateSubstitutions[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
9509
9494
  var _step_value = _step.value, expression = _step_value.expression, value = _step_value.value;
9510
9495
  var flags = "g";
9511
- if (typeof expression === "object") {
9496
+ if ((typeof expression === "undefined" ? "undefined" : _type_of(expression)) === "object") {
9512
9497
  flags = "".concat(expression.flags).concat(expression.global ? "" : "g");
9513
9498
  }
9514
9499
  templateStr = templateStr.replace(new RegExp(expression, flags), value);
@@ -9657,7 +9642,7 @@ var MarkdownPlugin = function() {
9657
9642
  var bindingResolveLookup = createPatternMatcher("{{", "}}");
9658
9643
  var expressionResolveLookup = createPatternMatcher("@[", "]@");
9659
9644
  function resolveAllRefs(node2, resolveOptions, propertiesToSkip) {
9660
- 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") {
9661
9646
  return node2;
9662
9647
  }
9663
9648
  if (typeof node2 === "string") {
@@ -9670,7 +9655,7 @@ var MarkdownPlugin = function() {
9670
9655
  }
9671
9656
  var val = node2[key];
9672
9657
  var newVal = val;
9673
- if (typeof val === "object") {
9658
+ if ((typeof val === "undefined" ? "undefined" : _type_of(val)) === "object") {
9674
9659
  newVal = resolveAllRefs(val, resolveOptions, propertiesToSkip);
9675
9660
  } else if (typeof val === "string") {
9676
9661
  newVal = resolveString(val, resolveOptions);
@@ -10011,7 +9996,7 @@ var MarkdownPlugin = function() {
10011
9996
  key: "applyParser",
10012
9997
  value: function applyParser(parser) {
10013
9998
  parser.hooks.parseNode.tap("asset", function(obj, nodeType, options, childOptions) {
10014
- 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") {
10015
10000
  var assetAST = parser.parseObject(obj, "asset", options);
10016
10001
  if (!assetAST) {
10017
10002
  return [];
@@ -10211,6 +10196,7 @@ var MarkdownPlugin = function() {
10211
10196
  }();
10212
10197
  var FlowInstance = /*#__PURE__*/ function() {
10213
10198
  function FlowInstance(id, flow3, options) {
10199
+ var _this = this;
10214
10200
  _class_call_check(this, FlowInstance);
10215
10201
  this.isTransitioning = false;
10216
10202
  this.hooks = {
@@ -10227,60 +10213,55 @@ var MarkdownPlugin = function() {
10227
10213
  this.flow = flow3;
10228
10214
  this.log = options === null || options === void 0 ? void 0 : options.logger;
10229
10215
  this.history = [];
10230
- var _this = this;
10231
- this.hooks.transition.tap("startPromise", function() {
10232
- var _ref = _async_to_generator(function(_oldState, nextState) {
10216
+ this.hooks.transition.tap("startPromise", function(_oldState, nextState) {
10217
+ return _async_to_generator(function() {
10233
10218
  var newState;
10234
10219
  return _ts_generator(this, function(_state) {
10235
10220
  newState = nextState.value;
10236
- if (_this.flowPromise && newState.state_type === "END") {
10237
- _this.flowPromise.resolve(newState);
10221
+ if (this.flowPromise && newState.state_type === "END") {
10222
+ this.flowPromise.resolve(newState);
10238
10223
  }
10239
10224
  return [
10240
10225
  2
10241
10226
  ];
10242
10227
  });
10243
- });
10244
- return function(_oldState, nextState) {
10245
- return _ref.apply(this, arguments);
10246
- };
10247
- }());
10228
+ }).call(_this);
10229
+ });
10248
10230
  }
10249
10231
  _create_class(FlowInstance, [
10250
10232
  {
10251
10233
  key: "start",
10252
10234
  value: /** Start the state machine */ function start() {
10253
- var _this = this;
10254
10235
  return _async_to_generator(function() {
10255
10236
  var _this_log, initialState;
10256
10237
  return _ts_generator(this, function(_state) {
10257
- if (_this.flowPromise) {
10238
+ if (this.flowPromise) {
10258
10239
  ;
10259
- (_this_log = _this.log) === null || _this_log === void 0 ? void 0 : _this_log.warn("Already called start for flow");
10240
+ (_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.warn("Already called start for flow");
10260
10241
  return [
10261
10242
  2,
10262
- _this.flowPromise.promise
10243
+ this.flowPromise.promise
10263
10244
  ];
10264
10245
  }
10265
- _this.flow = _this.hooks.beforeStart.call(_this.flow) || _this.flow;
10266
- if (_this.flow.onStart) {
10267
- _this.hooks.onStart.call(_this.flow.onStart);
10246
+ this.flow = this.hooks.beforeStart.call(this.flow) || this.flow;
10247
+ if (this.flow.onStart) {
10248
+ this.hooks.onStart.call(this.flow.onStart);
10268
10249
  }
10269
- initialState = _this.flow.startState;
10250
+ initialState = this.flow.startState;
10270
10251
  if (!initialState) {
10271
10252
  return [
10272
10253
  2,
10273
10254
  Promise.reject(new Error("No 'startState' defined for flow"))
10274
10255
  ];
10275
10256
  }
10276
- _this.flowPromise = (0, import_p_defer2.default)();
10277
- _this.pushHistory(initialState);
10257
+ this.flowPromise = (0, import_p_defer2.default)();
10258
+ this.pushHistory(initialState);
10278
10259
  return [
10279
10260
  2,
10280
- _this.flowPromise.promise
10261
+ this.flowPromise.promise
10281
10262
  ];
10282
10263
  });
10283
- })();
10264
+ }).call(this);
10284
10265
  }
10285
10266
  },
10286
10267
  {
@@ -10332,7 +10313,7 @@ var MarkdownPlugin = function() {
10332
10313
  throw new Error("No flow definition for: ".concat(stateName, " was found."));
10333
10314
  }
10334
10315
  var nextState = this.flow[stateName];
10335
- 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)) {
10336
10317
  var _this_log;
10337
10318
  (_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.error("Flow doesn't contain any states named: ".concat(stateName));
10338
10319
  return;
@@ -10392,30 +10373,30 @@ var MarkdownPlugin = function() {
10392
10373
  {
10393
10374
  key: "run",
10394
10375
  value: function run(startState) {
10395
- var _this = this;
10396
10376
  return _async_to_generator(function() {
10397
- var _this_log, startFlow, flow3, end, firstItem;
10377
+ var _this, _this_log, startFlow, flow3, end, firstItem;
10398
10378
  return _ts_generator(this, function(_state) {
10399
10379
  switch(_state.label){
10400
10380
  case 0:
10401
- if (!Object.prototype.hasOwnProperty.call(_this.navigation, startState)) {
10381
+ _this = this;
10382
+ if (!Object.prototype.hasOwnProperty.call(this.navigation, startState)) {
10402
10383
  return [
10403
10384
  2,
10404
10385
  Promise.reject(new Error("No flow defined for: ".concat(startState)))
10405
10386
  ];
10406
10387
  }
10407
- startFlow = _this.navigation[startState];
10408
- if (startFlow === null || typeof startFlow !== "object") {
10388
+ startFlow = this.navigation[startState];
10389
+ if (startFlow === null || (typeof startFlow === "undefined" ? "undefined" : _type_of(startFlow)) !== "object") {
10409
10390
  return [
10410
10391
  2,
10411
10392
  Promise.reject(new Error("Flow: ".concat(startState, " needs to be an object")))
10412
10393
  ];
10413
10394
  }
10414
- (_this_log = _this.log) === null || _this_log === void 0 ? void 0 : _this_log.debug("Starting flow: ".concat(startState));
10395
+ (_this_log = this.log) === null || _this_log === void 0 ? void 0 : _this_log.debug("Starting flow: ".concat(startState));
10415
10396
  flow3 = new FlowInstance(startState, startFlow, {
10416
- logger: _this.log
10397
+ logger: this.log
10417
10398
  });
10418
- _this.addNewFlow(flow3);
10399
+ this.addNewFlow(flow3);
10419
10400
  flow3.hooks.afterTransition.tap("flow-controller", function(flowInstance) {
10420
10401
  var _flowInstance_currentState;
10421
10402
  if (((_flowInstance_currentState = flowInstance.currentState) === null || _flowInstance_currentState === void 0 ? void 0 : _flowInstance_currentState.value.state_type) === "FLOW") {
@@ -10435,10 +10416,10 @@ var MarkdownPlugin = function() {
10435
10416
  ];
10436
10417
  case 1:
10437
10418
  end = _state.sent();
10438
- _this.navStack.pop();
10439
- if (_this.navStack.length > 0) {
10419
+ this.navStack.pop();
10420
+ if (this.navStack.length > 0) {
10440
10421
  firstItem = 0;
10441
- _this.current = _this.navStack[firstItem];
10422
+ this.current = this.navStack[firstItem];
10442
10423
  }
10443
10424
  return [
10444
10425
  2,
@@ -10446,16 +10427,15 @@ var MarkdownPlugin = function() {
10446
10427
  ];
10447
10428
  }
10448
10429
  });
10449
- })();
10430
+ }).call(this);
10450
10431
  }
10451
10432
  },
10452
10433
  {
10453
10434
  key: "start",
10454
10435
  value: function start() {
10455
- var _this = this;
10456
10436
  return _async_to_generator(function() {
10457
10437
  return _ts_generator(this, function(_state) {
10458
- if (!_this.navigation.BEGIN) {
10438
+ if (!this.navigation.BEGIN) {
10459
10439
  return [
10460
10440
  2,
10461
10441
  Promise.reject(new Error("Must supply a BEGIN state"))
@@ -10463,10 +10443,10 @@ var MarkdownPlugin = function() {
10463
10443
  }
10464
10444
  return [
10465
10445
  2,
10466
- _this.run(_this.navigation.BEGIN)
10446
+ this.run(this.navigation.BEGIN)
10467
10447
  ];
10468
10448
  });
10469
- })();
10449
+ }).call(this);
10470
10450
  }
10471
10451
  }
10472
10452
  ]);
@@ -11573,7 +11553,7 @@ var MarkdownPlugin = function() {
11573
11553
  var parentBinding = resolved.parent();
11574
11554
  var property = resolved.key();
11575
11555
  var parentValue = this.get(parentBinding);
11576
- 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);
11577
11557
  this.getModel().delete(resolved, options);
11578
11558
  if (existedBeforeDelete && !this.get(resolved)) {
11579
11559
  this.trash.add(resolved);
@@ -11674,7 +11654,7 @@ var MarkdownPlugin = function() {
11674
11654
  var expressionEvaluator;
11675
11655
  var handleEval = function(exp) {
11676
11656
  if (exp) {
11677
- if (typeof exp === "object" && "exp" in exp) {
11657
+ if ((typeof exp === "undefined" ? "undefined" : _type_of(exp)) === "object" && "exp" in exp) {
11678
11658
  expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(exp.exp);
11679
11659
  } else {
11680
11660
  expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(exp);
@@ -11935,7 +11915,7 @@ var MarkdownPlugin = function() {
11935
11915
  flow3.hooks.beforeTransition.tap("player", function(state, transitionVal) {
11936
11916
  var computedTransitionVal = state.transitions[transitionVal] ? transitionVal : "*";
11937
11917
  if (state.onEnd && state.transitions[computedTransitionVal]) {
11938
- if (typeof state.onEnd === "object" && "exp" in state.onEnd) {
11918
+ if (_type_of(state.onEnd) === "object" && "exp" in state.onEnd) {
11939
11919
  expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(state.onEnd.exp);
11940
11920
  } else {
11941
11921
  expressionEvaluator === null || expressionEvaluator === void 0 ? void 0 : expressionEvaluator.evaluate(state.onEnd);
@@ -12094,12 +12074,12 @@ var MarkdownPlugin = function() {
12094
12074
  {
12095
12075
  key: "start",
12096
12076
  value: function start(payload) {
12097
- var _this = this;
12098
12077
  return _async_to_generator(function() {
12099
- 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;
12100
12079
  return _ts_generator(this, function(_state) {
12101
12080
  switch(_state.label){
12102
12081
  case 0:
12082
+ _this = this;
12103
12083
  ref = Symbol((_payload_id = payload === null || payload === void 0 ? void 0 : payload.id) !== null && _payload_id !== void 0 ? _payload_id : "payload");
12104
12084
  maybeUpdateState = function(newState) {
12105
12085
  if (_this.state.ref !== ref) {
@@ -12109,7 +12089,7 @@ var MarkdownPlugin = function() {
12109
12089
  _this.setState(newState);
12110
12090
  return newState;
12111
12091
  };
12112
- _this.setState({
12092
+ this.setState({
12113
12093
  status: "not-started",
12114
12094
  ref: ref
12115
12095
  });
@@ -12121,8 +12101,8 @@ var MarkdownPlugin = function() {
12121
12101
  ,
12122
12102
  4
12123
12103
  ]);
12124
- _this_setupFlow = _this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
12125
- _this.setState(_object_spread({
12104
+ _this_setupFlow = this.setupFlow(payload), state = _this_setupFlow.state, start = _this_setupFlow.start;
12105
+ this.setState(_object_spread({
12126
12106
  ref: ref
12127
12107
  }, state));
12128
12108
  start();
@@ -12167,7 +12147,7 @@ var MarkdownPlugin = function() {
12167
12147
  ];
12168
12148
  }
12169
12149
  });
12170
- })();
12150
+ }).call(this);
12171
12151
  }
12172
12152
  }
12173
12153
  ]);
@@ -12187,16 +12167,16 @@ var MarkdownPlugin = function() {
12187
12167
  Abreve: "\u0102",
12188
12168
  Acirc: "\xC2",
12189
12169
  Acy: "\u0410",
12190
- Afr: "\u{1D504}",
12170
+ Afr: "\uD835\uDD04",
12191
12171
  Agrave: "\xC0",
12192
12172
  Alpha: "\u0391",
12193
12173
  Amacr: "\u0100",
12194
12174
  And: "\u2A53",
12195
12175
  Aogon: "\u0104",
12196
- Aopf: "\u{1D538}",
12176
+ Aopf: "\uD835\uDD38",
12197
12177
  ApplyFunction: "\u2061",
12198
12178
  Aring: "\xC5",
12199
- Ascr: "\u{1D49C}",
12179
+ Ascr: "\uD835\uDC9C",
12200
12180
  Assign: "\u2254",
12201
12181
  Atilde: "\xC3",
12202
12182
  Auml: "\xC4",
@@ -12207,8 +12187,8 @@ var MarkdownPlugin = function() {
12207
12187
  Because: "\u2235",
12208
12188
  Bernoullis: "\u212C",
12209
12189
  Beta: "\u0392",
12210
- Bfr: "\u{1D505}",
12211
- Bopf: "\u{1D539}",
12190
+ Bfr: "\uD835\uDD05",
12191
+ Bopf: "\uD835\uDD39",
12212
12192
  Breve: "\u02D8",
12213
12193
  Bscr: "\u212C",
12214
12194
  Bumpeq: "\u224E",
@@ -12243,7 +12223,7 @@ var MarkdownPlugin = function() {
12243
12223
  Coproduct: "\u2210",
12244
12224
  CounterClockwiseContourIntegral: "\u2233",
12245
12225
  Cross: "\u2A2F",
12246
- Cscr: "\u{1D49E}",
12226
+ Cscr: "\uD835\uDC9E",
12247
12227
  Cup: "\u22D3",
12248
12228
  CupCap: "\u224D",
12249
12229
  DD: "\u2145",
@@ -12258,7 +12238,7 @@ var MarkdownPlugin = function() {
12258
12238
  Dcy: "\u0414",
12259
12239
  Del: "\u2207",
12260
12240
  Delta: "\u0394",
12261
- Dfr: "\u{1D507}",
12241
+ Dfr: "\uD835\uDD07",
12262
12242
  DiacriticalAcute: "\xB4",
12263
12243
  DiacriticalDot: "\u02D9",
12264
12244
  DiacriticalDoubleAcute: "\u02DD",
@@ -12266,7 +12246,7 @@ var MarkdownPlugin = function() {
12266
12246
  DiacriticalTilde: "\u02DC",
12267
12247
  Diamond: "\u22C4",
12268
12248
  DifferentialD: "\u2146",
12269
- Dopf: "\u{1D53B}",
12249
+ Dopf: "\uD835\uDD3B",
12270
12250
  Dot: "\xA8",
12271
12251
  DotDot: "\u20DC",
12272
12252
  DotEqual: "\u2250",
@@ -12298,7 +12278,7 @@ var MarkdownPlugin = function() {
12298
12278
  DownTee: "\u22A4",
12299
12279
  DownTeeArrow: "\u21A7",
12300
12280
  Downarrow: "\u21D3",
12301
- Dscr: "\u{1D49F}",
12281
+ Dscr: "\uD835\uDC9F",
12302
12282
  Dstrok: "\u0110",
12303
12283
  ENG: "\u014A",
12304
12284
  ETH: "\xD0",
@@ -12307,14 +12287,14 @@ var MarkdownPlugin = function() {
12307
12287
  Ecirc: "\xCA",
12308
12288
  Ecy: "\u042D",
12309
12289
  Edot: "\u0116",
12310
- Efr: "\u{1D508}",
12290
+ Efr: "\uD835\uDD08",
12311
12291
  Egrave: "\xC8",
12312
12292
  Element: "\u2208",
12313
12293
  Emacr: "\u0112",
12314
12294
  EmptySmallSquare: "\u25FB",
12315
12295
  EmptyVerySmallSquare: "\u25AB",
12316
12296
  Eogon: "\u0118",
12317
- Eopf: "\u{1D53C}",
12297
+ Eopf: "\uD835\uDD3C",
12318
12298
  Epsilon: "\u0395",
12319
12299
  Equal: "\u2A75",
12320
12300
  EqualTilde: "\u2242",
@@ -12326,10 +12306,10 @@ var MarkdownPlugin = function() {
12326
12306
  Exists: "\u2203",
12327
12307
  ExponentialE: "\u2147",
12328
12308
  Fcy: "\u0424",
12329
- Ffr: "\u{1D509}",
12309
+ Ffr: "\uD835\uDD09",
12330
12310
  FilledSmallSquare: "\u25FC",
12331
12311
  FilledVerySmallSquare: "\u25AA",
12332
- Fopf: "\u{1D53D}",
12312
+ Fopf: "\uD835\uDD3D",
12333
12313
  ForAll: "\u2200",
12334
12314
  Fouriertrf: "\u2131",
12335
12315
  Fscr: "\u2131",
@@ -12342,9 +12322,9 @@ var MarkdownPlugin = function() {
12342
12322
  Gcirc: "\u011C",
12343
12323
  Gcy: "\u0413",
12344
12324
  Gdot: "\u0120",
12345
- Gfr: "\u{1D50A}",
12325
+ Gfr: "\uD835\uDD0A",
12346
12326
  Gg: "\u22D9",
12347
- Gopf: "\u{1D53E}",
12327
+ Gopf: "\uD835\uDD3E",
12348
12328
  GreaterEqual: "\u2265",
12349
12329
  GreaterEqualLess: "\u22DB",
12350
12330
  GreaterFullEqual: "\u2267",
@@ -12352,7 +12332,7 @@ var MarkdownPlugin = function() {
12352
12332
  GreaterLess: "\u2277",
12353
12333
  GreaterSlantEqual: "\u2A7E",
12354
12334
  GreaterTilde: "\u2273",
12355
- Gscr: "\u{1D4A2}",
12335
+ Gscr: "\uD835\uDCA2",
12356
12336
  Gt: "\u226B",
12357
12337
  HARDcy: "\u042A",
12358
12338
  Hacek: "\u02C7",
@@ -12385,7 +12365,7 @@ var MarkdownPlugin = function() {
12385
12365
  InvisibleComma: "\u2063",
12386
12366
  InvisibleTimes: "\u2062",
12387
12367
  Iogon: "\u012E",
12388
- Iopf: "\u{1D540}",
12368
+ Iopf: "\uD835\uDD40",
12389
12369
  Iota: "\u0399",
12390
12370
  Iscr: "\u2110",
12391
12371
  Itilde: "\u0128",
@@ -12393,9 +12373,9 @@ var MarkdownPlugin = function() {
12393
12373
  Iuml: "\xCF",
12394
12374
  Jcirc: "\u0134",
12395
12375
  Jcy: "\u0419",
12396
- Jfr: "\u{1D50D}",
12397
- Jopf: "\u{1D541}",
12398
- Jscr: "\u{1D4A5}",
12376
+ Jfr: "\uD835\uDD0D",
12377
+ Jopf: "\uD835\uDD41",
12378
+ Jscr: "\uD835\uDCA5",
12399
12379
  Jsercy: "\u0408",
12400
12380
  Jukcy: "\u0404",
12401
12381
  KHcy: "\u0425",
@@ -12403,9 +12383,9 @@ var MarkdownPlugin = function() {
12403
12383
  Kappa: "\u039A",
12404
12384
  Kcedil: "\u0136",
12405
12385
  Kcy: "\u041A",
12406
- Kfr: "\u{1D50E}",
12407
- Kopf: "\u{1D542}",
12408
- Kscr: "\u{1D4A6}",
12386
+ Kfr: "\uD835\uDD0E",
12387
+ Kopf: "\uD835\uDD42",
12388
+ Kscr: "\uD835\uDCA6",
12409
12389
  LJcy: "\u0409",
12410
12390
  LT: "<",
12411
12391
  Lacute: "\u0139",
@@ -12448,7 +12428,7 @@ var MarkdownPlugin = function() {
12448
12428
  LessLess: "\u2AA1",
12449
12429
  LessSlantEqual: "\u2A7D",
12450
12430
  LessTilde: "\u2272",
12451
- Lfr: "\u{1D50F}",
12431
+ Lfr: "\uD835\uDD0F",
12452
12432
  Ll: "\u22D8",
12453
12433
  Lleftarrow: "\u21DA",
12454
12434
  Lmidot: "\u013F",
@@ -12458,7 +12438,7 @@ var MarkdownPlugin = function() {
12458
12438
  Longleftarrow: "\u27F8",
12459
12439
  Longleftrightarrow: "\u27FA",
12460
12440
  Longrightarrow: "\u27F9",
12461
- Lopf: "\u{1D543}",
12441
+ Lopf: "\uD835\uDD43",
12462
12442
  LowerLeftArrow: "\u2199",
12463
12443
  LowerRightArrow: "\u2198",
12464
12444
  Lscr: "\u2112",
@@ -12469,9 +12449,9 @@ var MarkdownPlugin = function() {
12469
12449
  Mcy: "\u041C",
12470
12450
  MediumSpace: "\u205F",
12471
12451
  Mellintrf: "\u2133",
12472
- Mfr: "\u{1D510}",
12452
+ Mfr: "\uD835\uDD10",
12473
12453
  MinusPlus: "\u2213",
12474
- Mopf: "\u{1D544}",
12454
+ Mopf: "\uD835\uDD44",
12475
12455
  Mscr: "\u2133",
12476
12456
  Mu: "\u039C",
12477
12457
  NJcy: "\u040A",
@@ -12486,7 +12466,7 @@ var MarkdownPlugin = function() {
12486
12466
  NestedGreaterGreater: "\u226B",
12487
12467
  NestedLessLess: "\u226A",
12488
12468
  NewLine: "\n",
12489
- Nfr: "\u{1D511}",
12469
+ Nfr: "\uD835\uDD11",
12490
12470
  NoBreak: "\u2060",
12491
12471
  NonBreakingSpace: "\xA0",
12492
12472
  Nopf: "\u2115",
@@ -12542,7 +12522,7 @@ var MarkdownPlugin = function() {
12542
12522
  NotTildeFullEqual: "\u2247",
12543
12523
  NotTildeTilde: "\u2249",
12544
12524
  NotVerticalBar: "\u2224",
12545
- Nscr: "\u{1D4A9}",
12525
+ Nscr: "\uD835\uDCA9",
12546
12526
  Ntilde: "\xD1",
12547
12527
  Nu: "\u039D",
12548
12528
  OElig: "\u0152",
@@ -12550,16 +12530,16 @@ var MarkdownPlugin = function() {
12550
12530
  Ocirc: "\xD4",
12551
12531
  Ocy: "\u041E",
12552
12532
  Odblac: "\u0150",
12553
- Ofr: "\u{1D512}",
12533
+ Ofr: "\uD835\uDD12",
12554
12534
  Ograve: "\xD2",
12555
12535
  Omacr: "\u014C",
12556
12536
  Omega: "\u03A9",
12557
12537
  Omicron: "\u039F",
12558
- Oopf: "\u{1D546}",
12538
+ Oopf: "\uD835\uDD46",
12559
12539
  OpenCurlyDoubleQuote: "\u201C",
12560
12540
  OpenCurlyQuote: "\u2018",
12561
12541
  Or: "\u2A54",
12562
- Oscr: "\u{1D4AA}",
12542
+ Oscr: "\uD835\uDCAA",
12563
12543
  Oslash: "\xD8",
12564
12544
  Otilde: "\xD5",
12565
12545
  Otimes: "\u2A37",
@@ -12570,7 +12550,7 @@ var MarkdownPlugin = function() {
12570
12550
  OverParenthesis: "\u23DC",
12571
12551
  PartialD: "\u2202",
12572
12552
  Pcy: "\u041F",
12573
- Pfr: "\u{1D513}",
12553
+ Pfr: "\uD835\uDD13",
12574
12554
  Phi: "\u03A6",
12575
12555
  Pi: "\u03A0",
12576
12556
  PlusMinus: "\xB1",
@@ -12585,12 +12565,12 @@ var MarkdownPlugin = function() {
12585
12565
  Product: "\u220F",
12586
12566
  Proportion: "\u2237",
12587
12567
  Proportional: "\u221D",
12588
- Pscr: "\u{1D4AB}",
12568
+ Pscr: "\uD835\uDCAB",
12589
12569
  Psi: "\u03A8",
12590
12570
  QUOT: '"',
12591
- Qfr: "\u{1D514}",
12571
+ Qfr: "\uD835\uDD14",
12592
12572
  Qopf: "\u211A",
12593
- Qscr: "\u{1D4AC}",
12573
+ Qscr: "\uD835\uDCAC",
12594
12574
  RBarr: "\u2910",
12595
12575
  REG: "\xAE",
12596
12576
  Racute: "\u0154",
@@ -12644,14 +12624,14 @@ var MarkdownPlugin = function() {
12644
12624
  Scedil: "\u015E",
12645
12625
  Scirc: "\u015C",
12646
12626
  Scy: "\u0421",
12647
- Sfr: "\u{1D516}",
12627
+ Sfr: "\uD835\uDD16",
12648
12628
  ShortDownArrow: "\u2193",
12649
12629
  ShortLeftArrow: "\u2190",
12650
12630
  ShortRightArrow: "\u2192",
12651
12631
  ShortUpArrow: "\u2191",
12652
12632
  Sigma: "\u03A3",
12653
12633
  SmallCircle: "\u2218",
12654
- Sopf: "\u{1D54A}",
12634
+ Sopf: "\uD835\uDD4A",
12655
12635
  Sqrt: "\u221A",
12656
12636
  Square: "\u25A1",
12657
12637
  SquareIntersection: "\u2293",
@@ -12660,7 +12640,7 @@ var MarkdownPlugin = function() {
12660
12640
  SquareSuperset: "\u2290",
12661
12641
  SquareSupersetEqual: "\u2292",
12662
12642
  SquareUnion: "\u2294",
12663
- Sscr: "\u{1D4AE}",
12643
+ Sscr: "\uD835\uDCAE",
12664
12644
  Star: "\u22C6",
12665
12645
  Sub: "\u22D0",
12666
12646
  Subset: "\u22D0",
@@ -12684,7 +12664,7 @@ var MarkdownPlugin = function() {
12684
12664
  Tcaron: "\u0164",
12685
12665
  Tcedil: "\u0162",
12686
12666
  Tcy: "\u0422",
12687
- Tfr: "\u{1D517}",
12667
+ Tfr: "\uD835\uDD17",
12688
12668
  Therefore: "\u2234",
12689
12669
  Theta: "\u0398",
12690
12670
  ThickSpace: "\u205F\u200A",
@@ -12693,9 +12673,9 @@ var MarkdownPlugin = function() {
12693
12673
  TildeEqual: "\u2243",
12694
12674
  TildeFullEqual: "\u2245",
12695
12675
  TildeTilde: "\u2248",
12696
- Topf: "\u{1D54B}",
12676
+ Topf: "\uD835\uDD4B",
12697
12677
  TripleDot: "\u20DB",
12698
- Tscr: "\u{1D4AF}",
12678
+ Tscr: "\uD835\uDCAF",
12699
12679
  Tstrok: "\u0166",
12700
12680
  Uacute: "\xDA",
12701
12681
  Uarr: "\u219F",
@@ -12705,7 +12685,7 @@ var MarkdownPlugin = function() {
12705
12685
  Ucirc: "\xDB",
12706
12686
  Ucy: "\u0423",
12707
12687
  Udblac: "\u0170",
12708
- Ufr: "\u{1D518}",
12688
+ Ufr: "\uD835\uDD18",
12709
12689
  Ugrave: "\xD9",
12710
12690
  Umacr: "\u016A",
12711
12691
  UnderBar: "_",
@@ -12715,7 +12695,7 @@ var MarkdownPlugin = function() {
12715
12695
  Union: "\u22C3",
12716
12696
  UnionPlus: "\u228E",
12717
12697
  Uogon: "\u0172",
12718
- Uopf: "\u{1D54C}",
12698
+ Uopf: "\uD835\uDD4C",
12719
12699
  UpArrow: "\u2191",
12720
12700
  UpArrowBar: "\u2912",
12721
12701
  UpArrowDownArrow: "\u21C5",
@@ -12730,7 +12710,7 @@ var MarkdownPlugin = function() {
12730
12710
  Upsi: "\u03D2",
12731
12711
  Upsilon: "\u03A5",
12732
12712
  Uring: "\u016E",
12733
- Uscr: "\u{1D4B0}",
12713
+ Uscr: "\uD835\uDCB0",
12734
12714
  Utilde: "\u0168",
12735
12715
  Uuml: "\xDC",
12736
12716
  VDash: "\u22AB",
@@ -12746,28 +12726,28 @@ var MarkdownPlugin = function() {
12746
12726
  VerticalSeparator: "\u2758",
12747
12727
  VerticalTilde: "\u2240",
12748
12728
  VeryThinSpace: "\u200A",
12749
- Vfr: "\u{1D519}",
12750
- Vopf: "\u{1D54D}",
12751
- Vscr: "\u{1D4B1}",
12729
+ Vfr: "\uD835\uDD19",
12730
+ Vopf: "\uD835\uDD4D",
12731
+ Vscr: "\uD835\uDCB1",
12752
12732
  Vvdash: "\u22AA",
12753
12733
  Wcirc: "\u0174",
12754
12734
  Wedge: "\u22C0",
12755
- Wfr: "\u{1D51A}",
12756
- Wopf: "\u{1D54E}",
12757
- Wscr: "\u{1D4B2}",
12758
- Xfr: "\u{1D51B}",
12735
+ Wfr: "\uD835\uDD1A",
12736
+ Wopf: "\uD835\uDD4E",
12737
+ Wscr: "\uD835\uDCB2",
12738
+ Xfr: "\uD835\uDD1B",
12759
12739
  Xi: "\u039E",
12760
- Xopf: "\u{1D54F}",
12761
- Xscr: "\u{1D4B3}",
12740
+ Xopf: "\uD835\uDD4F",
12741
+ Xscr: "\uD835\uDCB3",
12762
12742
  YAcy: "\u042F",
12763
12743
  YIcy: "\u0407",
12764
12744
  YUcy: "\u042E",
12765
12745
  Yacute: "\xDD",
12766
12746
  Ycirc: "\u0176",
12767
12747
  Ycy: "\u042B",
12768
- Yfr: "\u{1D51C}",
12769
- Yopf: "\u{1D550}",
12770
- Yscr: "\u{1D4B4}",
12748
+ Yfr: "\uD835\uDD1C",
12749
+ Yopf: "\uD835\uDD50",
12750
+ Yscr: "\uD835\uDCB4",
12771
12751
  Yuml: "\u0178",
12772
12752
  ZHcy: "\u0416",
12773
12753
  Zacute: "\u0179",
@@ -12778,7 +12758,7 @@ var MarkdownPlugin = function() {
12778
12758
  Zeta: "\u0396",
12779
12759
  Zfr: "\u2128",
12780
12760
  Zopf: "\u2124",
12781
- Zscr: "\u{1D4B5}",
12761
+ Zscr: "\uD835\uDCB5",
12782
12762
  aacute: "\xE1",
12783
12763
  abreve: "\u0103",
12784
12764
  ac: "\u223E",
@@ -12789,7 +12769,7 @@ var MarkdownPlugin = function() {
12789
12769
  acy: "\u0430",
12790
12770
  aelig: "\xE6",
12791
12771
  af: "\u2061",
12792
- afr: "\u{1D51E}",
12772
+ afr: "\uD835\uDD1E",
12793
12773
  agrave: "\xE0",
12794
12774
  alefsym: "\u2135",
12795
12775
  aleph: "\u2135",
@@ -12821,7 +12801,7 @@ var MarkdownPlugin = function() {
12821
12801
  angst: "\xC5",
12822
12802
  angzarr: "\u237C",
12823
12803
  aogon: "\u0105",
12824
- aopf: "\u{1D552}",
12804
+ aopf: "\uD835\uDD52",
12825
12805
  ap: "\u2248",
12826
12806
  apE: "\u2A70",
12827
12807
  apacir: "\u2A6F",
@@ -12831,7 +12811,7 @@ var MarkdownPlugin = function() {
12831
12811
  approx: "\u2248",
12832
12812
  approxeq: "\u224A",
12833
12813
  aring: "\xE5",
12834
- ascr: "\u{1D4B6}",
12814
+ ascr: "\uD835\uDCB6",
12835
12815
  ast: "*",
12836
12816
  asymp: "\u2248",
12837
12817
  asympeq: "\u224D",
@@ -12861,7 +12841,7 @@ var MarkdownPlugin = function() {
12861
12841
  beta: "\u03B2",
12862
12842
  beth: "\u2136",
12863
12843
  between: "\u226C",
12864
- bfr: "\u{1D51F}",
12844
+ bfr: "\uD835\uDD1F",
12865
12845
  bigcap: "\u22C2",
12866
12846
  bigcirc: "\u25EF",
12867
12847
  bigcup: "\u22C3",
@@ -12890,7 +12870,7 @@ var MarkdownPlugin = function() {
12890
12870
  bne: "=\u20E5",
12891
12871
  bnequiv: "\u2261\u20E5",
12892
12872
  bnot: "\u2310",
12893
- bopf: "\u{1D553}",
12873
+ bopf: "\uD835\uDD53",
12894
12874
  bot: "\u22A5",
12895
12875
  bottom: "\u22A5",
12896
12876
  bowtie: "\u22C8",
@@ -12941,7 +12921,7 @@ var MarkdownPlugin = function() {
12941
12921
  bprime: "\u2035",
12942
12922
  breve: "\u02D8",
12943
12923
  brvbar: "\xA6",
12944
- bscr: "\u{1D4B7}",
12924
+ bscr: "\uD835\uDCB7",
12945
12925
  bsemi: "\u204F",
12946
12926
  bsim: "\u223D",
12947
12927
  bsime: "\u22CD",
@@ -12975,7 +12955,7 @@ var MarkdownPlugin = function() {
12975
12955
  cemptyv: "\u29B2",
12976
12956
  cent: "\xA2",
12977
12957
  centerdot: "\xB7",
12978
- cfr: "\u{1D520}",
12958
+ cfr: "\uD835\uDD20",
12979
12959
  chcy: "\u0447",
12980
12960
  check: "\u2713",
12981
12961
  checkmark: "\u2713",
@@ -13009,13 +12989,13 @@ var MarkdownPlugin = function() {
13009
12989
  cong: "\u2245",
13010
12990
  congdot: "\u2A6D",
13011
12991
  conint: "\u222E",
13012
- copf: "\u{1D554}",
12992
+ copf: "\uD835\uDD54",
13013
12993
  coprod: "\u2210",
13014
12994
  copy: "\xA9",
13015
12995
  copysr: "\u2117",
13016
12996
  crarr: "\u21B5",
13017
12997
  cross: "\u2717",
13018
- cscr: "\u{1D4B8}",
12998
+ cscr: "\uD835\uDCB8",
13019
12999
  csub: "\u2ACF",
13020
13000
  csube: "\u2AD1",
13021
13001
  csup: "\u2AD0",
@@ -13067,7 +13047,7 @@ var MarkdownPlugin = function() {
13067
13047
  delta: "\u03B4",
13068
13048
  demptyv: "\u29B1",
13069
13049
  dfisht: "\u297F",
13070
- dfr: "\u{1D521}",
13050
+ dfr: "\uD835\uDD21",
13071
13051
  dharl: "\u21C3",
13072
13052
  dharr: "\u21C2",
13073
13053
  diam: "\u22C4",
@@ -13085,7 +13065,7 @@ var MarkdownPlugin = function() {
13085
13065
  dlcorn: "\u231E",
13086
13066
  dlcrop: "\u230D",
13087
13067
  dollar: "$",
13088
- dopf: "\u{1D555}",
13068
+ dopf: "\uD835\uDD55",
13089
13069
  dot: "\u02D9",
13090
13070
  doteq: "\u2250",
13091
13071
  doteqdot: "\u2251",
@@ -13100,7 +13080,7 @@ var MarkdownPlugin = function() {
13100
13080
  drbkarow: "\u2910",
13101
13081
  drcorn: "\u231F",
13102
13082
  drcrop: "\u230C",
13103
- dscr: "\u{1D4B9}",
13083
+ dscr: "\uD835\uDCB9",
13104
13084
  dscy: "\u0455",
13105
13085
  dsol: "\u29F6",
13106
13086
  dstrok: "\u0111",
@@ -13124,7 +13104,7 @@ var MarkdownPlugin = function() {
13124
13104
  edot: "\u0117",
13125
13105
  ee: "\u2147",
13126
13106
  efDot: "\u2252",
13127
- efr: "\u{1D522}",
13107
+ efr: "\uD835\uDD22",
13128
13108
  eg: "\u2A9A",
13129
13109
  egrave: "\xE8",
13130
13110
  egs: "\u2A96",
@@ -13144,7 +13124,7 @@ var MarkdownPlugin = function() {
13144
13124
  eng: "\u014B",
13145
13125
  ensp: "\u2002",
13146
13126
  eogon: "\u0119",
13147
- eopf: "\u{1D556}",
13127
+ eopf: "\uD835\uDD56",
13148
13128
  epar: "\u22D5",
13149
13129
  eparsl: "\u29E3",
13150
13130
  eplus: "\u2A71",
@@ -13180,14 +13160,14 @@ var MarkdownPlugin = function() {
13180
13160
  ffilig: "\uFB03",
13181
13161
  fflig: "\uFB00",
13182
13162
  ffllig: "\uFB04",
13183
- ffr: "\u{1D523}",
13163
+ ffr: "\uD835\uDD23",
13184
13164
  filig: "\uFB01",
13185
13165
  fjlig: "fj",
13186
13166
  flat: "\u266D",
13187
13167
  fllig: "\uFB02",
13188
13168
  fltns: "\u25B1",
13189
13169
  fnof: "\u0192",
13190
- fopf: "\u{1D557}",
13170
+ fopf: "\uD835\uDD57",
13191
13171
  forall: "\u2200",
13192
13172
  fork: "\u22D4",
13193
13173
  forkv: "\u2AD9",
@@ -13209,7 +13189,7 @@ var MarkdownPlugin = function() {
13209
13189
  frac78: "\u215E",
13210
13190
  frasl: "\u2044",
13211
13191
  frown: "\u2322",
13212
- fscr: "\u{1D4BB}",
13192
+ fscr: "\uD835\uDCBB",
13213
13193
  gE: "\u2267",
13214
13194
  gEl: "\u2A8C",
13215
13195
  gacute: "\u01F5",
@@ -13232,7 +13212,7 @@ var MarkdownPlugin = function() {
13232
13212
  gesdotol: "\u2A84",
13233
13213
  gesl: "\u22DB\uFE00",
13234
13214
  gesles: "\u2A94",
13235
- gfr: "\u{1D524}",
13215
+ gfr: "\uD835\uDD24",
13236
13216
  gg: "\u226B",
13237
13217
  ggg: "\u22D9",
13238
13218
  gimel: "\u2137",
@@ -13248,7 +13228,7 @@ var MarkdownPlugin = function() {
13248
13228
  gneq: "\u2A88",
13249
13229
  gneqq: "\u2269",
13250
13230
  gnsim: "\u22E7",
13251
- gopf: "\u{1D558}",
13231
+ gopf: "\uD835\uDD58",
13252
13232
  grave: "`",
13253
13233
  gscr: "\u210A",
13254
13234
  gsim: "\u2273",
@@ -13283,16 +13263,16 @@ var MarkdownPlugin = function() {
13283
13263
  heartsuit: "\u2665",
13284
13264
  hellip: "\u2026",
13285
13265
  hercon: "\u22B9",
13286
- hfr: "\u{1D525}",
13266
+ hfr: "\uD835\uDD25",
13287
13267
  hksearow: "\u2925",
13288
13268
  hkswarow: "\u2926",
13289
13269
  hoarr: "\u21FF",
13290
13270
  homtht: "\u223B",
13291
13271
  hookleftarrow: "\u21A9",
13292
13272
  hookrightarrow: "\u21AA",
13293
- hopf: "\u{1D559}",
13273
+ hopf: "\uD835\uDD59",
13294
13274
  horbar: "\u2015",
13295
- hscr: "\u{1D4BD}",
13275
+ hscr: "\uD835\uDCBD",
13296
13276
  hslash: "\u210F",
13297
13277
  hstrok: "\u0127",
13298
13278
  hybull: "\u2043",
@@ -13304,7 +13284,7 @@ var MarkdownPlugin = function() {
13304
13284
  iecy: "\u0435",
13305
13285
  iexcl: "\xA1",
13306
13286
  iff: "\u21D4",
13307
- ifr: "\u{1D526}",
13287
+ ifr: "\uD835\uDD26",
13308
13288
  igrave: "\xEC",
13309
13289
  ii: "\u2148",
13310
13290
  iiiint: "\u2A0C",
@@ -13332,11 +13312,11 @@ var MarkdownPlugin = function() {
13332
13312
  intprod: "\u2A3C",
13333
13313
  iocy: "\u0451",
13334
13314
  iogon: "\u012F",
13335
- iopf: "\u{1D55A}",
13315
+ iopf: "\uD835\uDD5A",
13336
13316
  iota: "\u03B9",
13337
13317
  iprod: "\u2A3C",
13338
13318
  iquest: "\xBF",
13339
- iscr: "\u{1D4BE}",
13319
+ iscr: "\uD835\uDCBE",
13340
13320
  isin: "\u2208",
13341
13321
  isinE: "\u22F9",
13342
13322
  isindot: "\u22F5",
@@ -13349,22 +13329,22 @@ var MarkdownPlugin = function() {
13349
13329
  iuml: "\xEF",
13350
13330
  jcirc: "\u0135",
13351
13331
  jcy: "\u0439",
13352
- jfr: "\u{1D527}",
13332
+ jfr: "\uD835\uDD27",
13353
13333
  jmath: "\u0237",
13354
- jopf: "\u{1D55B}",
13355
- jscr: "\u{1D4BF}",
13334
+ jopf: "\uD835\uDD5B",
13335
+ jscr: "\uD835\uDCBF",
13356
13336
  jsercy: "\u0458",
13357
13337
  jukcy: "\u0454",
13358
13338
  kappa: "\u03BA",
13359
13339
  kappav: "\u03F0",
13360
13340
  kcedil: "\u0137",
13361
13341
  kcy: "\u043A",
13362
- kfr: "\u{1D528}",
13342
+ kfr: "\uD835\uDD28",
13363
13343
  kgreen: "\u0138",
13364
13344
  khcy: "\u0445",
13365
13345
  kjcy: "\u045C",
13366
- kopf: "\u{1D55C}",
13367
- kscr: "\u{1D4C0}",
13346
+ kopf: "\uD835\uDD5C",
13347
+ kscr: "\uD835\uDCC0",
13368
13348
  lAarr: "\u21DA",
13369
13349
  lArr: "\u21D0",
13370
13350
  lAtail: "\u291B",
@@ -13442,7 +13422,7 @@ var MarkdownPlugin = function() {
13442
13422
  lesssim: "\u2272",
13443
13423
  lfisht: "\u297C",
13444
13424
  lfloor: "\u230A",
13445
- lfr: "\u{1D529}",
13425
+ lfr: "\uD835\uDD29",
13446
13426
  lg: "\u2276",
13447
13427
  lgE: "\u2A91",
13448
13428
  lhard: "\u21BD",
@@ -13475,7 +13455,7 @@ var MarkdownPlugin = function() {
13475
13455
  looparrowleft: "\u21AB",
13476
13456
  looparrowright: "\u21AC",
13477
13457
  lopar: "\u2985",
13478
- lopf: "\u{1D55D}",
13458
+ lopf: "\uD835\uDD5D",
13479
13459
  loplus: "\u2A2D",
13480
13460
  lotimes: "\u2A34",
13481
13461
  lowast: "\u2217",
@@ -13492,7 +13472,7 @@ var MarkdownPlugin = function() {
13492
13472
  lrm: "\u200E",
13493
13473
  lrtri: "\u22BF",
13494
13474
  lsaquo: "\u2039",
13495
- lscr: "\u{1D4C1}",
13475
+ lscr: "\uD835\uDCC1",
13496
13476
  lsh: "\u21B0",
13497
13477
  lsim: "\u2272",
13498
13478
  lsime: "\u2A8D",
@@ -13532,7 +13512,7 @@ var MarkdownPlugin = function() {
13532
13512
  mcy: "\u043C",
13533
13513
  mdash: "\u2014",
13534
13514
  measuredangle: "\u2221",
13535
- mfr: "\u{1D52A}",
13515
+ mfr: "\uD835\uDD2A",
13536
13516
  mho: "\u2127",
13537
13517
  micro: "\xB5",
13538
13518
  mid: "\u2223",
@@ -13547,9 +13527,9 @@ var MarkdownPlugin = function() {
13547
13527
  mldr: "\u2026",
13548
13528
  mnplus: "\u2213",
13549
13529
  models: "\u22A7",
13550
- mopf: "\u{1D55E}",
13530
+ mopf: "\uD835\uDD5E",
13551
13531
  mp: "\u2213",
13552
- mscr: "\u{1D4C2}",
13532
+ mscr: "\uD835\uDCC2",
13553
13533
  mstpos: "\u223E",
13554
13534
  mu: "\u03BC",
13555
13535
  multimap: "\u22B8",
@@ -13598,7 +13578,7 @@ var MarkdownPlugin = function() {
13598
13578
  nesim: "\u2242\u0338",
13599
13579
  nexist: "\u2204",
13600
13580
  nexists: "\u2204",
13601
- nfr: "\u{1D52B}",
13581
+ nfr: "\uD835\uDD2B",
13602
13582
  ngE: "\u2267\u0338",
13603
13583
  nge: "\u2271",
13604
13584
  ngeq: "\u2271",
@@ -13633,7 +13613,7 @@ var MarkdownPlugin = function() {
13633
13613
  nltri: "\u22EA",
13634
13614
  nltrie: "\u22EC",
13635
13615
  nmid: "\u2224",
13636
- nopf: "\u{1D55F}",
13616
+ nopf: "\uD835\uDD5F",
13637
13617
  not: "\xAC",
13638
13618
  notin: "\u2209",
13639
13619
  notinE: "\u22F9\u0338",
@@ -13665,7 +13645,7 @@ var MarkdownPlugin = function() {
13665
13645
  nsc: "\u2281",
13666
13646
  nsccue: "\u22E1",
13667
13647
  nsce: "\u2AB0\u0338",
13668
- nscr: "\u{1D4C3}",
13648
+ nscr: "\uD835\uDCC3",
13669
13649
  nshortmid: "\u2224",
13670
13650
  nshortparallel: "\u2226",
13671
13651
  nsim: "\u2241",
@@ -13732,7 +13712,7 @@ var MarkdownPlugin = function() {
13732
13712
  odsold: "\u29BC",
13733
13713
  oelig: "\u0153",
13734
13714
  ofcir: "\u29BF",
13735
- ofr: "\u{1D52C}",
13715
+ ofr: "\uD835\uDD2C",
13736
13716
  ogon: "\u02DB",
13737
13717
  ograve: "\xF2",
13738
13718
  ogt: "\u29C1",
@@ -13749,7 +13729,7 @@ var MarkdownPlugin = function() {
13749
13729
  omicron: "\u03BF",
13750
13730
  omid: "\u29B6",
13751
13731
  ominus: "\u2296",
13752
- oopf: "\u{1D560}",
13732
+ oopf: "\uD835\uDD60",
13753
13733
  opar: "\u29B7",
13754
13734
  operp: "\u29B9",
13755
13735
  oplus: "\u2295",
@@ -13784,7 +13764,7 @@ var MarkdownPlugin = function() {
13784
13764
  permil: "\u2030",
13785
13765
  perp: "\u22A5",
13786
13766
  pertenk: "\u2031",
13787
- pfr: "\u{1D52D}",
13767
+ pfr: "\uD835\uDD2D",
13788
13768
  phi: "\u03C6",
13789
13769
  phiv: "\u03D5",
13790
13770
  phmmat: "\u2133",
@@ -13807,7 +13787,7 @@ var MarkdownPlugin = function() {
13807
13787
  plustwo: "\u2A27",
13808
13788
  pm: "\xB1",
13809
13789
  pointint: "\u2A15",
13810
- popf: "\u{1D561}",
13790
+ popf: "\uD835\uDD61",
13811
13791
  pound: "\xA3",
13812
13792
  pr: "\u227A",
13813
13793
  prE: "\u2AB3",
@@ -13835,14 +13815,14 @@ var MarkdownPlugin = function() {
13835
13815
  propto: "\u221D",
13836
13816
  prsim: "\u227E",
13837
13817
  prurel: "\u22B0",
13838
- pscr: "\u{1D4C5}",
13818
+ pscr: "\uD835\uDCC5",
13839
13819
  psi: "\u03C8",
13840
13820
  puncsp: "\u2008",
13841
- qfr: "\u{1D52E}",
13821
+ qfr: "\uD835\uDD2E",
13842
13822
  qint: "\u2A0C",
13843
- qopf: "\u{1D562}",
13823
+ qopf: "\uD835\uDD62",
13844
13824
  qprime: "\u2057",
13845
- qscr: "\u{1D4C6}",
13825
+ qscr: "\uD835\uDCC6",
13846
13826
  quaternions: "\u210D",
13847
13827
  quatint: "\u2A16",
13848
13828
  quest: "?",
@@ -13902,7 +13882,7 @@ var MarkdownPlugin = function() {
13902
13882
  reg: "\xAE",
13903
13883
  rfisht: "\u297D",
13904
13884
  rfloor: "\u230B",
13905
- rfr: "\u{1D52F}",
13885
+ rfr: "\uD835\uDD2F",
13906
13886
  rhard: "\u21C1",
13907
13887
  rharu: "\u21C0",
13908
13888
  rharul: "\u296C",
@@ -13929,7 +13909,7 @@ var MarkdownPlugin = function() {
13929
13909
  roarr: "\u21FE",
13930
13910
  robrk: "\u27E7",
13931
13911
  ropar: "\u2986",
13932
- ropf: "\u{1D563}",
13912
+ ropf: "\uD835\uDD63",
13933
13913
  roplus: "\u2A2E",
13934
13914
  rotimes: "\u2A35",
13935
13915
  rpar: ")",
@@ -13937,7 +13917,7 @@ var MarkdownPlugin = function() {
13937
13917
  rppolint: "\u2A12",
13938
13918
  rrarr: "\u21C9",
13939
13919
  rsaquo: "\u203A",
13940
- rscr: "\u{1D4C7}",
13920
+ rscr: "\uD835\uDCC7",
13941
13921
  rsh: "\u21B1",
13942
13922
  rsqb: "]",
13943
13923
  rsquo: "\u2019",
@@ -13979,7 +13959,7 @@ var MarkdownPlugin = function() {
13979
13959
  setminus: "\u2216",
13980
13960
  setmn: "\u2216",
13981
13961
  sext: "\u2736",
13982
- sfr: "\u{1D530}",
13962
+ sfr: "\uD835\uDD30",
13983
13963
  sfrown: "\u2322",
13984
13964
  sharp: "\u266F",
13985
13965
  shchcy: "\u0449",
@@ -14014,7 +13994,7 @@ var MarkdownPlugin = function() {
14014
13994
  sol: "/",
14015
13995
  solb: "\u29C4",
14016
13996
  solbar: "\u233F",
14017
- sopf: "\u{1D564}",
13997
+ sopf: "\uD835\uDD64",
14018
13998
  spades: "\u2660",
14019
13999
  spadesuit: "\u2660",
14020
14000
  spar: "\u2225",
@@ -14035,7 +14015,7 @@ var MarkdownPlugin = function() {
14035
14015
  squarf: "\u25AA",
14036
14016
  squf: "\u25AA",
14037
14017
  srarr: "\u2192",
14038
- sscr: "\u{1D4C8}",
14018
+ sscr: "\uD835\uDCC8",
14039
14019
  ssetmn: "\u2216",
14040
14020
  ssmile: "\u2323",
14041
14021
  sstarf: "\u22C6",
@@ -14110,7 +14090,7 @@ var MarkdownPlugin = function() {
14110
14090
  tcy: "\u0442",
14111
14091
  tdot: "\u20DB",
14112
14092
  telrec: "\u2315",
14113
- tfr: "\u{1D531}",
14093
+ tfr: "\uD835\uDD31",
14114
14094
  there4: "\u2234",
14115
14095
  therefore: "\u2234",
14116
14096
  theta: "\u03B8",
@@ -14132,7 +14112,7 @@ var MarkdownPlugin = function() {
14132
14112
  top: "\u22A4",
14133
14113
  topbot: "\u2336",
14134
14114
  topcir: "\u2AF1",
14135
- topf: "\u{1D565}",
14115
+ topf: "\uD835\uDD65",
14136
14116
  topfork: "\u2ADA",
14137
14117
  tosa: "\u2929",
14138
14118
  tprime: "\u2034",
@@ -14151,7 +14131,7 @@ var MarkdownPlugin = function() {
14151
14131
  trisb: "\u29CD",
14152
14132
  tritime: "\u2A3B",
14153
14133
  trpezium: "\u23E2",
14154
- tscr: "\u{1D4C9}",
14134
+ tscr: "\uD835\uDCC9",
14155
14135
  tscy: "\u0446",
14156
14136
  tshcy: "\u045B",
14157
14137
  tstrok: "\u0167",
@@ -14170,7 +14150,7 @@ var MarkdownPlugin = function() {
14170
14150
  udblac: "\u0171",
14171
14151
  udhar: "\u296E",
14172
14152
  ufisht: "\u297E",
14173
- ufr: "\u{1D532}",
14153
+ ufr: "\uD835\uDD32",
14174
14154
  ugrave: "\xF9",
14175
14155
  uharl: "\u21BF",
14176
14156
  uharr: "\u21BE",
@@ -14182,7 +14162,7 @@ var MarkdownPlugin = function() {
14182
14162
  umacr: "\u016B",
14183
14163
  uml: "\xA8",
14184
14164
  uogon: "\u0173",
14185
- uopf: "\u{1D566}",
14165
+ uopf: "\uD835\uDD66",
14186
14166
  uparrow: "\u2191",
14187
14167
  updownarrow: "\u2195",
14188
14168
  upharpoonleft: "\u21BF",
@@ -14197,7 +14177,7 @@ var MarkdownPlugin = function() {
14197
14177
  urcrop: "\u230E",
14198
14178
  uring: "\u016F",
14199
14179
  urtri: "\u25F9",
14200
- uscr: "\u{1D4CA}",
14180
+ uscr: "\uD835\uDCCA",
14201
14181
  utdot: "\u22F0",
14202
14182
  utilde: "\u0169",
14203
14183
  utri: "\u25B5",
@@ -14234,14 +14214,14 @@ var MarkdownPlugin = function() {
14234
14214
  vellip: "\u22EE",
14235
14215
  verbar: "|",
14236
14216
  vert: "|",
14237
- vfr: "\u{1D533}",
14217
+ vfr: "\uD835\uDD33",
14238
14218
  vltri: "\u22B2",
14239
14219
  vnsub: "\u2282\u20D2",
14240
14220
  vnsup: "\u2283\u20D2",
14241
- vopf: "\u{1D567}",
14221
+ vopf: "\uD835\uDD67",
14242
14222
  vprop: "\u221D",
14243
14223
  vrtri: "\u22B3",
14244
- vscr: "\u{1D4CB}",
14224
+ vscr: "\uD835\uDCCB",
14245
14225
  vsubnE: "\u2ACB\uFE00",
14246
14226
  vsubne: "\u228A\uFE00",
14247
14227
  vsupnE: "\u2ACC\uFE00",
@@ -14252,17 +14232,17 @@ var MarkdownPlugin = function() {
14252
14232
  wedge: "\u2227",
14253
14233
  wedgeq: "\u2259",
14254
14234
  weierp: "\u2118",
14255
- wfr: "\u{1D534}",
14256
- wopf: "\u{1D568}",
14235
+ wfr: "\uD835\uDD34",
14236
+ wopf: "\uD835\uDD68",
14257
14237
  wp: "\u2118",
14258
14238
  wr: "\u2240",
14259
14239
  wreath: "\u2240",
14260
- wscr: "\u{1D4CC}",
14240
+ wscr: "\uD835\uDCCC",
14261
14241
  xcap: "\u22C2",
14262
14242
  xcirc: "\u25EF",
14263
14243
  xcup: "\u22C3",
14264
14244
  xdtri: "\u25BD",
14265
- xfr: "\u{1D535}",
14245
+ xfr: "\uD835\uDD35",
14266
14246
  xhArr: "\u27FA",
14267
14247
  xharr: "\u27F7",
14268
14248
  xi: "\u03BE",
@@ -14271,12 +14251,12 @@ var MarkdownPlugin = function() {
14271
14251
  xmap: "\u27FC",
14272
14252
  xnis: "\u22FB",
14273
14253
  xodot: "\u2A00",
14274
- xopf: "\u{1D569}",
14254
+ xopf: "\uD835\uDD69",
14275
14255
  xoplus: "\u2A01",
14276
14256
  xotime: "\u2A02",
14277
14257
  xrArr: "\u27F9",
14278
14258
  xrarr: "\u27F6",
14279
- xscr: "\u{1D4CD}",
14259
+ xscr: "\uD835\uDCCD",
14280
14260
  xsqcup: "\u2A06",
14281
14261
  xuplus: "\u2A04",
14282
14262
  xutri: "\u25B3",
@@ -14287,10 +14267,10 @@ var MarkdownPlugin = function() {
14287
14267
  ycirc: "\u0177",
14288
14268
  ycy: "\u044B",
14289
14269
  yen: "\xA5",
14290
- yfr: "\u{1D536}",
14270
+ yfr: "\uD835\uDD36",
14291
14271
  yicy: "\u0457",
14292
- yopf: "\u{1D56A}",
14293
- yscr: "\u{1D4CE}",
14272
+ yopf: "\uD835\uDD6A",
14273
+ yscr: "\uD835\uDCCE",
14294
14274
  yucy: "\u044E",
14295
14275
  yuml: "\xFF",
14296
14276
  zacute: "\u017A",
@@ -14299,19 +14279,19 @@ var MarkdownPlugin = function() {
14299
14279
  zdot: "\u017C",
14300
14280
  zeetrf: "\u2128",
14301
14281
  zeta: "\u03B6",
14302
- zfr: "\u{1D537}",
14282
+ zfr: "\uD835\uDD37",
14303
14283
  zhcy: "\u0436",
14304
14284
  zigrarr: "\u21DD",
14305
- zopf: "\u{1D56B}",
14306
- zscr: "\u{1D4CF}",
14285
+ zopf: "\uD835\uDD6B",
14286
+ zscr: "\uD835\uDCCF",
14307
14287
  zwj: "\u200D",
14308
14288
  zwnj: "\u200C"
14309
14289
  };
14310
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/decode-named-character-reference@1.0.2/node_modules/decode-named-character-reference/index.js
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
14311
14291
  var own = {}.hasOwnProperty;
14312
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-combine-extensions@2.0.0/node_modules/micromark-util-combine-extensions/index.js
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
14313
14293
  var hasOwnProperty = {}.hasOwnProperty;
14314
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-character@2.1.0/node_modules/micromark-util-character/index.js
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
14315
14295
  var asciiAlpha = regexCheck(/[A-Za-z]/);
14316
14296
  var asciiAlphanumeric = regexCheck(/[\dA-Za-z]/);
14317
14297
  var asciiAtext = regexCheck(/[#-'*+\--9=?A-Z^-~]/);
@@ -14320,88 +14300,79 @@ var MarkdownPlugin = function() {
14320
14300
  var asciiPunctuation = regexCheck(/[!-/:-@[-`{-~]/);
14321
14301
  var unicodePunctuation = regexCheck(RegExp("\\p{P}|\\p{S}", "u"));
14322
14302
  var unicodeWhitespace = regexCheck(/\s/);
14323
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/initialize/content.js
14303
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js
14324
14304
  var content = {
14325
14305
  tokenize: initializeContent
14326
14306
  };
14327
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/initialize/document.js
14307
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js
14328
14308
  var document = {
14329
14309
  tokenize: initializeDocument
14330
14310
  };
14331
14311
  var containerConstruct = {
14332
14312
  tokenize: tokenizeContainer
14333
14313
  };
14334
- // ../../../../../../../../../../../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
14335
- var asciiAlpha2 = regexCheck2(/[A-Za-z]/);
14336
- var asciiAlphanumeric2 = regexCheck2(/[\dA-Za-z]/);
14337
- var asciiAtext2 = regexCheck2(/[#-'*+\--9=?A-Z^-~]/);
14338
- var asciiDigit2 = regexCheck2(/\d/);
14339
- var asciiHexDigit2 = regexCheck2(/[\dA-Fa-f]/);
14340
- var asciiPunctuation2 = regexCheck2(/[!-/:-@[-`{-~]/);
14341
- var unicodePunctuation2 = regexCheck2(RegExp("\\p{P}|\\p{S}", "u"));
14342
- var unicodeWhitespace2 = regexCheck2(/\s/);
14343
- // ../../../../../../../../../../../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
14344
14315
  var attention = {
14345
14316
  name: "attention",
14346
- tokenize: tokenizeAttention,
14347
- resolveAll: resolveAllAttention
14317
+ resolveAll: resolveAllAttention,
14318
+ tokenize: tokenizeAttention
14348
14319
  };
14349
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/autolink.js
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
14350
14321
  var autolink = {
14351
14322
  name: "autolink",
14352
14323
  tokenize: tokenizeAutolink
14353
14324
  };
14354
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/blank-line.js
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
14355
14326
  var blankLine = {
14356
- tokenize: tokenizeBlankLine,
14357
- partial: true
14327
+ partial: true,
14328
+ tokenize: tokenizeBlankLine
14358
14329
  };
14359
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/block-quote.js
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
14360
14331
  var blockQuote = {
14361
- name: "blockQuote",
14362
- tokenize: tokenizeBlockQuoteStart,
14363
14332
  continuation: {
14364
14333
  tokenize: tokenizeBlockQuoteContinuation
14365
14334
  },
14366
- exit: exit
14335
+ exit: exit,
14336
+ name: "blockQuote",
14337
+ tokenize: tokenizeBlockQuoteStart
14367
14338
  };
14368
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/character-escape.js
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
14369
14340
  var characterEscape = {
14370
14341
  name: "characterEscape",
14371
14342
  tokenize: tokenizeCharacterEscape
14372
14343
  };
14373
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/character-reference.js
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
14374
14345
  var characterReference = {
14375
14346
  name: "characterReference",
14376
14347
  tokenize: tokenizeCharacterReference
14377
14348
  };
14378
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/code-fenced.js
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
14379
14350
  var nonLazyContinuation = {
14380
- tokenize: tokenizeNonLazyContinuation,
14381
- partial: true
14351
+ partial: true,
14352
+ tokenize: tokenizeNonLazyContinuation
14382
14353
  };
14383
14354
  var codeFenced = {
14355
+ concrete: true,
14384
14356
  name: "codeFenced",
14385
- tokenize: tokenizeCodeFenced,
14386
- concrete: true
14357
+ tokenize: tokenizeCodeFenced
14387
14358
  };
14388
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/code-indented.js
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
14389
14360
  var codeIndented = {
14390
14361
  name: "codeIndented",
14391
14362
  tokenize: tokenizeCodeIndented
14392
14363
  };
14393
14364
  var furtherStart = {
14394
- tokenize: tokenizeFurtherStart,
14395
- partial: true
14365
+ partial: true,
14366
+ tokenize: tokenizeFurtherStart
14396
14367
  };
14397
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/code-text.js
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
14398
14369
  var codeText = {
14399
14370
  name: "codeText",
14400
- tokenize: tokenizeCodeText,
14371
+ previous: previous,
14401
14372
  resolve: resolveCodeText,
14402
- previous: previous
14373
+ tokenize: tokenizeCodeText
14403
14374
  };
14404
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-subtokenize@2.0.1/node_modules/micromark-util-subtokenize/lib/splice-buffer.js
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
14405
14376
  var SpliceBuffer = /*#__PURE__*/ function() {
14406
14377
  function SpliceBuffer(initial) {
14407
14378
  _class_call_check(this, SpliceBuffer);
@@ -14602,36 +14573,36 @@ var MarkdownPlugin = function() {
14602
14573
  ]);
14603
14574
  return SpliceBuffer;
14604
14575
  }();
14605
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/content.js
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
14606
14577
  var content2 = {
14607
- tokenize: tokenizeContent,
14608
- resolve: resolveContent
14578
+ resolve: resolveContent,
14579
+ tokenize: tokenizeContent
14609
14580
  };
14610
14581
  var continuationConstruct = {
14611
- tokenize: tokenizeContinuation,
14612
- partial: true
14582
+ partial: true,
14583
+ tokenize: tokenizeContinuation
14613
14584
  };
14614
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/definition.js
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
14615
14586
  var definition = {
14616
14587
  name: "definition",
14617
14588
  tokenize: tokenizeDefinition
14618
14589
  };
14619
14590
  var titleBefore = {
14620
- tokenize: tokenizeTitleBefore,
14621
- partial: true
14591
+ partial: true,
14592
+ tokenize: tokenizeTitleBefore
14622
14593
  };
14623
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/hard-break-escape.js
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
14624
14595
  var hardBreakEscape = {
14625
14596
  name: "hardBreakEscape",
14626
14597
  tokenize: tokenizeHardBreakEscape
14627
14598
  };
14628
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/heading-atx.js
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
14629
14600
  var headingAtx = {
14630
14601
  name: "headingAtx",
14631
- tokenize: tokenizeHeadingAtx,
14632
- resolve: resolveHeadingAtx
14602
+ resolve: resolveHeadingAtx,
14603
+ tokenize: tokenizeHeadingAtx
14633
14604
  };
14634
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-html-tag-name@2.0.0/node_modules/micromark-util-html-tag-name/index.js
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
14635
14606
  var htmlBlockNames = [
14636
14607
  "address",
14637
14608
  "article",
@@ -14702,32 +14673,32 @@ var MarkdownPlugin = function() {
14702
14673
  "style",
14703
14674
  "textarea"
14704
14675
  ];
14705
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/html-flow.js
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
14706
14677
  var htmlFlow = {
14678
+ concrete: true,
14707
14679
  name: "htmlFlow",
14708
- tokenize: tokenizeHtmlFlow,
14709
14680
  resolveTo: resolveToHtmlFlow,
14710
- concrete: true
14681
+ tokenize: tokenizeHtmlFlow
14711
14682
  };
14712
14683
  var blankLineBefore = {
14713
- tokenize: tokenizeBlankLineBefore,
14714
- partial: true
14684
+ partial: true,
14685
+ tokenize: tokenizeBlankLineBefore
14715
14686
  };
14716
14687
  var nonLazyContinuationStart = {
14717
- tokenize: tokenizeNonLazyContinuationStart,
14718
- partial: true
14688
+ partial: true,
14689
+ tokenize: tokenizeNonLazyContinuationStart
14719
14690
  };
14720
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/html-text.js
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
14721
14692
  var htmlText = {
14722
14693
  name: "htmlText",
14723
14694
  tokenize: tokenizeHtmlText
14724
14695
  };
14725
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/label-end.js
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
14726
14697
  var labelEnd = {
14727
14698
  name: "labelEnd",
14728
- tokenize: tokenizeLabelEnd,
14699
+ resolveAll: resolveAllLabelEnd,
14729
14700
  resolveTo: resolveToLabelEnd,
14730
- resolveAll: resolveAllLabelEnd
14701
+ tokenize: tokenizeLabelEnd
14731
14702
  };
14732
14703
  var resourceConstruct = {
14733
14704
  tokenize: tokenizeResource
@@ -14738,62 +14709,62 @@ var MarkdownPlugin = function() {
14738
14709
  var referenceCollapsedConstruct = {
14739
14710
  tokenize: tokenizeReferenceCollapsed
14740
14711
  };
14741
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/label-start-image.js
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
14742
14713
  var labelStartImage = {
14743
14714
  name: "labelStartImage",
14744
- tokenize: tokenizeLabelStartImage,
14745
- resolveAll: labelEnd.resolveAll
14715
+ resolveAll: labelEnd.resolveAll,
14716
+ tokenize: tokenizeLabelStartImage
14746
14717
  };
14747
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/label-start-link.js
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
14748
14719
  var labelStartLink = {
14749
14720
  name: "labelStartLink",
14750
- tokenize: tokenizeLabelStartLink,
14751
- resolveAll: labelEnd.resolveAll
14721
+ resolveAll: labelEnd.resolveAll,
14722
+ tokenize: tokenizeLabelStartLink
14752
14723
  };
14753
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/line-ending.js
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
14754
14725
  var lineEnding = {
14755
14726
  name: "lineEnding",
14756
14727
  tokenize: tokenizeLineEnding
14757
14728
  };
14758
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/thematic-break.js
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
14759
14730
  var thematicBreak = {
14760
14731
  name: "thematicBreak",
14761
14732
  tokenize: tokenizeThematicBreak
14762
14733
  };
14763
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/list.js
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
14764
14735
  var list = {
14765
- name: "list",
14766
- tokenize: tokenizeListStart,
14767
14736
  continuation: {
14768
14737
  tokenize: tokenizeListContinuation
14769
14738
  },
14770
- exit: tokenizeListEnd
14739
+ exit: tokenizeListEnd,
14740
+ name: "list",
14741
+ tokenize: tokenizeListStart
14771
14742
  };
14772
14743
  var listItemPrefixWhitespaceConstruct = {
14773
- tokenize: tokenizeListItemPrefixWhitespace,
14774
- partial: true
14744
+ partial: true,
14745
+ tokenize: tokenizeListItemPrefixWhitespace
14775
14746
  };
14776
14747
  var indentConstruct = {
14777
- tokenize: tokenizeIndent,
14778
- partial: true
14748
+ partial: true,
14749
+ tokenize: tokenizeIndent
14779
14750
  };
14780
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-core-commonmark@2.0.1/node_modules/micromark-core-commonmark/lib/setext-underline.js
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
14781
14752
  var setextUnderline = {
14782
14753
  name: "setextUnderline",
14783
- tokenize: tokenizeSetextUnderline,
14784
- resolveTo: resolveToSetextUnderline
14754
+ resolveTo: resolveToSetextUnderline,
14755
+ tokenize: tokenizeSetextUnderline
14785
14756
  };
14786
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/initialize/flow.js
14757
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js
14787
14758
  var flow = {
14788
14759
  tokenize: initializeFlow
14789
14760
  };
14790
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/initialize/text.js
14761
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js
14791
14762
  var resolver = {
14792
14763
  resolveAll: createResolver()
14793
14764
  };
14794
14765
  var string = initializeFactory("string");
14795
14766
  var text = initializeFactory("text");
14796
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/constructs.js
14767
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/constructs.js
14797
14768
  var constructs_exports = {};
14798
14769
  __export(constructs_exports, {
14799
14770
  attentionMarkers: function() {
@@ -14859,9 +14830,9 @@ var MarkdownPlugin = function() {
14859
14830
  var disable = {
14860
14831
  null: []
14861
14832
  };
14862
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.0/node_modules/micromark/lib/preprocess.js
14833
+ // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark@4.0.2/node_modules/micromark/lib/preprocess.js
14863
14834
  var search = /[\0\t\n\r]/g;
14864
- // ../../../../../../../../../../../execroot/_main/bazel-out/k8-fastbuild/bin/node_modules/.aspect_rules_js/micromark-util-decode-string@2.0.0/node_modules/micromark-util-decode-string/index.js
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
14865
14836
  var characterEscapeOrReference = /\\([!-/:-@[-`{-~])|&(#(?:\d{1,7}|x[\da-f]{1,6})|[\da-z]{1,31});/gi;
14866
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
14867
14838
  var own2 = {}.hasOwnProperty;