@savvy-web/changelog 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +223 -133
- package/index.js +227 -137
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -29191,7 +29191,7 @@ var GlobSet = class GlobSet extends Class("GlobSet")(Struct({ patterns: ArraySch
|
|
|
29191
29191
|
};
|
|
29192
29192
|
|
|
29193
29193
|
//#endregion
|
|
29194
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
29194
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/BunExtension.js
|
|
29195
29195
|
/**
|
|
29196
29196
|
* Extension data specific to bun lockfiles, attached to `Lockfile.extension`
|
|
29197
29197
|
* when the format is `"bun"`.
|
|
@@ -31864,7 +31864,7 @@ const concatTokens = (prevTokens, nextTokens, isSeparated) => isSeparated || pre
|
|
|
31864
31864
|
];
|
|
31865
31865
|
|
|
31866
31866
|
//#endregion
|
|
31867
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.7.
|
|
31867
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/LocalExec.js
|
|
31868
31868
|
/**
|
|
31869
31869
|
* The package managers whose project-local exec argv this package knows.
|
|
31870
31870
|
*
|
|
@@ -32073,7 +32073,7 @@ var LocalExec = class LocalExec extends Service()("@effected/commands/LocalExec"
|
|
|
32073
32073
|
};
|
|
32074
32074
|
|
|
32075
32075
|
//#endregion
|
|
32076
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.7.
|
|
32076
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/Redaction.js
|
|
32077
32077
|
/**
|
|
32078
32078
|
* Argument tokens whose *following* positional (or `=`-joined value) is a
|
|
32079
32079
|
* secret. Lowercase; matching is case-insensitive.
|
|
@@ -32197,7 +32197,7 @@ var Redaction = class {
|
|
|
32197
32197
|
};
|
|
32198
32198
|
|
|
32199
32199
|
//#endregion
|
|
32200
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.7.
|
|
32200
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/internal/capture.js
|
|
32201
32201
|
/**
|
|
32202
32202
|
* Raised when a captured stream exceeds its byte budget.
|
|
32203
32203
|
*
|
|
@@ -32225,7 +32225,7 @@ const collectBounded = (stream, limit) => gen(function* () {
|
|
|
32225
32225
|
});
|
|
32226
32226
|
|
|
32227
32227
|
//#endregion
|
|
32228
|
-
//#region ../../node_modules/.pnpm/@effected+commands@0.7.
|
|
32228
|
+
//#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/Run.js
|
|
32229
32229
|
/**
|
|
32230
32230
|
* Default ceiling on captured bytes per stream (16 MiB).
|
|
32231
32231
|
*
|
|
@@ -32598,12 +32598,37 @@ var Run = class {
|
|
|
32598
32598
|
* A non-zero exit is a *result* here, not a failure — see {@link Run}'s
|
|
32599
32599
|
* remarks for the split against {@link Run.text}, {@link Run.lines} and
|
|
32600
32600
|
* {@link Run.json}.
|
|
32601
|
+
*
|
|
32602
|
+
* The error union is honest but wider than any one configuration can fire:
|
|
32603
|
+
* which arms are reachable depends on the options passed. For a call with
|
|
32604
|
+
* no options, exactly two failure modes exist —
|
|
32605
|
+
*
|
|
32606
|
+
* - {@link CommandFailedError} of kind `"spawn"`: the process never started
|
|
32607
|
+
* (executable missing, platform refused), **or** the platform failed while
|
|
32608
|
+
* reading a stream or awaiting the exit — this arm absorbs every
|
|
32609
|
+
* `PlatformError`, not only spawn-time ones.
|
|
32610
|
+
* - {@link CommandOutputError} of kind `"tooLarge"`: captured output
|
|
32611
|
+
* exceeded {@link RunOptions.maxOutputBytes} (default
|
|
32612
|
+
* {@link DEFAULT_MAX_OUTPUT_BYTES}).
|
|
32613
|
+
*
|
|
32614
|
+
* Setting {@link RunOptions.timeout} adds a third arm: kind `"timeout"`.
|
|
32615
|
+
* No configuration makes this combinator fail with kind `"nonZero"` — a
|
|
32616
|
+
* non-zero exit is a result — and kinds `"notJson"` / `"schema"` are
|
|
32617
|
+
* exclusive to {@link Run.json} and {@link Run.jsonLine}. A catch written
|
|
32618
|
+
* against an unconfigured call therefore needs only the two arms above;
|
|
32619
|
+
* handling the full union there is defensive, not required.
|
|
32601
32620
|
*/
|
|
32602
32621
|
static collect = collect;
|
|
32603
32622
|
/**
|
|
32604
32623
|
* Like {@link Run.collect}, but also tees each stream to the `Stdio` in `R`
|
|
32605
32624
|
* as it arrives, for a caller that wants live output alongside the captured
|
|
32606
32625
|
* {@link CommandOutput}.
|
|
32626
|
+
*
|
|
32627
|
+
* @remarks
|
|
32628
|
+
* Reachability of the error arms is exactly {@link Run.collect}'s, but the
|
|
32629
|
+
* tee adds a second *source* for kind `"spawn"`: a failing `Stdio` sink
|
|
32630
|
+
* (EPIPE when the host's own stdout is a closed pipe) is classified there
|
|
32631
|
+
* too, even though the child started and ran.
|
|
32607
32632
|
*/
|
|
32608
32633
|
static collectTee = collectTee;
|
|
32609
32634
|
/**
|
|
@@ -32918,7 +32943,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends Class("ReleaseAgeGate")({
|
|
|
32918
32943
|
};
|
|
32919
32944
|
|
|
32920
32945
|
//#endregion
|
|
32921
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
32946
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/ImporterDependency.js
|
|
32922
32947
|
/**
|
|
32923
32948
|
* One declared dependency of one workspace importer, as the lockfile records it.
|
|
32924
32949
|
*
|
|
@@ -32957,7 +32982,7 @@ var ImporterDependency = class extends Class("ImporterDependency")({
|
|
|
32957
32982
|
}) {};
|
|
32958
32983
|
|
|
32959
32984
|
//#endregion
|
|
32960
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
32985
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileImporter.js
|
|
32961
32986
|
/**
|
|
32962
32987
|
* One workspace importer's declared dependencies, as the lockfile records them.
|
|
32963
32988
|
*
|
|
@@ -32982,7 +33007,7 @@ var LockfileImporter = class extends Class("LockfileImporter")({
|
|
|
32982
33007
|
}) {};
|
|
32983
33008
|
|
|
32984
33009
|
//#endregion
|
|
32985
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
33010
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/ResolvedPackage.js
|
|
32986
33011
|
const EMPTY_DEPENDENCIES = {};
|
|
32987
33012
|
const EMPTY_PEER_META = {};
|
|
32988
33013
|
const EMPTY_EDGE_NAMES = [];
|
|
@@ -33073,7 +33098,7 @@ var ResolvedPackage = class extends Class("ResolvedPackage")({
|
|
|
33073
33098
|
}) {};
|
|
33074
33099
|
|
|
33075
33100
|
//#endregion
|
|
33076
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
33101
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/WorkspaceDependency.js
|
|
33077
33102
|
/**
|
|
33078
33103
|
* A directed dependency edge between two workspace packages as recorded in
|
|
33079
33104
|
* the lockfile.
|
|
@@ -33096,7 +33121,7 @@ var WorkspaceDependency = class extends Class("WorkspaceDependency")({
|
|
|
33096
33121
|
}) {};
|
|
33097
33122
|
|
|
33098
33123
|
//#endregion
|
|
33099
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
33124
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/PnpmExtension.js
|
|
33100
33125
|
/**
|
|
33101
33126
|
* Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
|
|
33102
33127
|
* when the format is `"pnpm"`.
|
|
@@ -33122,7 +33147,7 @@ var PnpmExtension = class extends Class("PnpmExtension")({
|
|
|
33122
33147
|
}) {};
|
|
33123
33148
|
|
|
33124
33149
|
//#endregion
|
|
33125
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
33150
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileFormat.js
|
|
33126
33151
|
/**
|
|
33127
33152
|
* The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
|
|
33128
33153
|
* `package-lock.json` (JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
|
|
@@ -33165,7 +33190,7 @@ const FILENAMES = {
|
|
|
33165
33190
|
const filenameFor = (format) => FILENAMES[format][0];
|
|
33166
33191
|
|
|
33167
33192
|
//#endregion
|
|
33168
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
33193
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/shared.js
|
|
33169
33194
|
/**
|
|
33170
33195
|
* The four dependency sections of a manifest, in a stable order — the shared
|
|
33171
33196
|
* dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
|
|
@@ -35217,7 +35242,7 @@ var JsoncModifier = class {
|
|
|
35217
35242
|
};
|
|
35218
35243
|
|
|
35219
35244
|
//#endregion
|
|
35220
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
35245
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/bun.js
|
|
35221
35246
|
const DepRecord$2 = optionalKey(Record(String$2, String$2));
|
|
35222
35247
|
const OptionalPeers = optionalKey(ArraySchema(String$2));
|
|
35223
35248
|
const BunWorkspaceEntry = Struct({
|
|
@@ -35395,7 +35420,7 @@ const toFields$3 = (raw) => gen(function* () {
|
|
|
35395
35420
|
});
|
|
35396
35421
|
|
|
35397
35422
|
//#endregion
|
|
35398
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
35423
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/npm.js
|
|
35399
35424
|
const DepRecord$1 = optionalKey(Record(String$2, String$2));
|
|
35400
35425
|
const PeerMetaRecord = optionalKey(Record(String$2, Struct({ optional: optionalKey(Boolean$1) })));
|
|
35401
35426
|
const NpmPackageEntry = Struct({
|
|
@@ -35585,7 +35610,7 @@ const toFields$2 = (raw) => gen(function* () {
|
|
|
35585
35610
|
});
|
|
35586
35611
|
|
|
35587
35612
|
//#endregion
|
|
35588
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
35613
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/YamlNode.js
|
|
35589
35614
|
/**
|
|
35590
35615
|
* YAML scalar presentation styles.
|
|
35591
35616
|
*
|
|
@@ -36042,7 +36067,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
|
|
|
36042
36067
|
}
|
|
36043
36068
|
|
|
36044
36069
|
//#endregion
|
|
36045
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
36070
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/diagnostics.js
|
|
36046
36071
|
/** Error codes emitted by the lexer stage. */
|
|
36047
36072
|
const YAML_LEX_ERROR_CODES = [
|
|
36048
36073
|
"UnexpectedCharacter",
|
|
@@ -36139,7 +36164,7 @@ function isFatalCode(code) {
|
|
|
36139
36164
|
}
|
|
36140
36165
|
|
|
36141
36166
|
//#endregion
|
|
36142
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
36167
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/YamlDiagnostic.js
|
|
36143
36168
|
/**
|
|
36144
36169
|
* Error codes emitted by the lexer stage.
|
|
36145
36170
|
*
|
|
@@ -36261,7 +36286,7 @@ function lineChar$1(text, offset) {
|
|
|
36261
36286
|
}
|
|
36262
36287
|
|
|
36263
36288
|
//#endregion
|
|
36264
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
36289
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/lexer.js
|
|
36265
36290
|
/**
|
|
36266
36291
|
* Create a new YAML scanner for the given source text.
|
|
36267
36292
|
*
|
|
@@ -36928,10 +36953,8 @@ function createScanner$1(text) {
|
|
|
36928
36953
|
const ch = peek();
|
|
36929
36954
|
if (ch === "") {
|
|
36930
36955
|
const start = pos;
|
|
36931
|
-
|
|
36932
|
-
|
|
36933
|
-
advance();
|
|
36934
|
-
return makeToken("byte-order-mark", "", start, sLine, sCol);
|
|
36956
|
+
pos++;
|
|
36957
|
+
return makeToken("byte-order-mark", "", start, line, col);
|
|
36935
36958
|
}
|
|
36936
36959
|
if (isNewline(ch)) return scanNewline();
|
|
36937
36960
|
if (isWhitespace(ch)) return scanWhitespace();
|
|
@@ -37185,7 +37208,7 @@ function createScanner$1(text) {
|
|
|
37185
37208
|
if (text[pos] === "\n") {
|
|
37186
37209
|
line++;
|
|
37187
37210
|
col = 0;
|
|
37188
|
-
} else col++;
|
|
37211
|
+
} else if (text[pos] !== "") col++;
|
|
37189
37212
|
pos++;
|
|
37190
37213
|
}
|
|
37191
37214
|
lineIndent = 0;
|
|
@@ -37225,7 +37248,7 @@ function lexAll(text) {
|
|
|
37225
37248
|
}
|
|
37226
37249
|
|
|
37227
37250
|
//#endregion
|
|
37228
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
37251
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/cst-parser.js
|
|
37229
37252
|
/**
|
|
37230
37253
|
* Hardening: cap CST nesting so hostile inputs cannot overflow the stack
|
|
37231
37254
|
* while the tree is being BUILT. Set slightly above the composer's
|
|
@@ -37947,7 +37970,7 @@ function parseCSTAll(text) {
|
|
|
37947
37970
|
}
|
|
37948
37971
|
|
|
37949
37972
|
//#endregion
|
|
37950
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
37973
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/anchors.js
|
|
37951
37974
|
/**
|
|
37952
37975
|
* Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
|
|
37953
37976
|
* Aliases represent references to existing anchored nodes and cannot have their own anchors.
|
|
@@ -38016,7 +38039,7 @@ function scanName(text, start) {
|
|
|
38016
38039
|
}
|
|
38017
38040
|
|
|
38018
38041
|
//#endregion
|
|
38019
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
38042
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/comments.js
|
|
38020
38043
|
/** True when there is no line break between `start` and `end` in `text`. */
|
|
38021
38044
|
function sameLineSpan(text, start, end) {
|
|
38022
38045
|
if (start < 0) return false;
|
|
@@ -38166,10 +38189,17 @@ function rawCommentText(source) {
|
|
|
38166
38189
|
function joinComments(a, b) {
|
|
38167
38190
|
return a === void 0 ? b : `${a}\n${b}`;
|
|
38168
38191
|
}
|
|
38169
|
-
/**
|
|
38192
|
+
/**
|
|
38193
|
+
* Zero-based column of `offset` within its line. A byte-order mark at the
|
|
38194
|
+
* line start occupies no column — the lexer's convention (#694) — so a
|
|
38195
|
+
* BOM-prefixed root mapping's content column is `0`, not `1`, and its
|
|
38196
|
+
* terminal own-line comment is not mistaken for one escaping a nested map.
|
|
38197
|
+
*/
|
|
38170
38198
|
function columnAt(text, offset) {
|
|
38171
38199
|
if (offset <= 0) return 0;
|
|
38172
|
-
|
|
38200
|
+
const lineStart = text.lastIndexOf("\n", offset - 1) + 1;
|
|
38201
|
+
const bom = text[lineStart] === "" && offset > lineStart ? 1 : 0;
|
|
38202
|
+
return offset - lineStart - bom;
|
|
38173
38203
|
}
|
|
38174
38204
|
/**
|
|
38175
38205
|
* Rebuild `node` with the given comment fields merged in (existing fields are
|
|
@@ -38230,7 +38260,7 @@ function mergedCommentFields(existing, incoming) {
|
|
|
38230
38260
|
}
|
|
38231
38261
|
|
|
38232
38262
|
//#endregion
|
|
38233
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
38263
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/state.js
|
|
38234
38264
|
let lineStartsText;
|
|
38235
38265
|
let lineStartsCache = [];
|
|
38236
38266
|
function getLineStarts(text) {
|
|
@@ -38241,6 +38271,11 @@ function getLineStarts(text) {
|
|
|
38241
38271
|
lineStartsCache = starts;
|
|
38242
38272
|
return starts;
|
|
38243
38273
|
}
|
|
38274
|
+
/**
|
|
38275
|
+
* Zero-based line and column of `offset`. A byte-order mark at the line start
|
|
38276
|
+
* occupies no column, matching the lexer and `columnAt` (#694), so a
|
|
38277
|
+
* diagnostic's `character` behind a BOM equals the BOM-less document's.
|
|
38278
|
+
*/
|
|
38244
38279
|
function lineCol(text, offset) {
|
|
38245
38280
|
const starts = getLineStarts(text);
|
|
38246
38281
|
const pos = Math.min(Math.max(offset, 0), text.length);
|
|
@@ -38251,9 +38286,11 @@ function lineCol(text, offset) {
|
|
|
38251
38286
|
if (starts[mid] <= pos) lo = mid;
|
|
38252
38287
|
else hi = mid - 1;
|
|
38253
38288
|
}
|
|
38289
|
+
const lineStart = starts[lo];
|
|
38290
|
+
const bom = text[lineStart] === "" && pos > lineStart ? 1 : 0;
|
|
38254
38291
|
return {
|
|
38255
38292
|
line: lo,
|
|
38256
|
-
column: pos -
|
|
38293
|
+
column: pos - lineStart - bom
|
|
38257
38294
|
};
|
|
38258
38295
|
}
|
|
38259
38296
|
/**
|
|
@@ -38351,7 +38388,7 @@ function exitNesting(state) {
|
|
|
38351
38388
|
}
|
|
38352
38389
|
|
|
38353
38390
|
//#endregion
|
|
38354
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
38391
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/tags.js
|
|
38355
38392
|
/**
|
|
38356
38393
|
* Resolve a tag shorthand using the document's %TAG directives.
|
|
38357
38394
|
* For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
|
|
@@ -38438,7 +38475,7 @@ function validateTagHandlesInDocument(docCst, state) {
|
|
|
38438
38475
|
}
|
|
38439
38476
|
|
|
38440
38477
|
//#endregion
|
|
38441
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
38478
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/scalars.js
|
|
38442
38479
|
const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
|
|
38443
38480
|
const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
|
|
38444
38481
|
const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
|
|
@@ -39365,7 +39402,7 @@ function shouldPreserveRaw(rawValue, value) {
|
|
|
39365
39402
|
}
|
|
39366
39403
|
|
|
39367
39404
|
//#endregion
|
|
39368
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
39405
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/block.js
|
|
39369
39406
|
/**
|
|
39370
39407
|
* Compose a block map from its CST children, with an optional external first key.
|
|
39371
39408
|
*
|
|
@@ -40792,7 +40829,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
|
|
|
40792
40829
|
}
|
|
40793
40830
|
|
|
40794
40831
|
//#endregion
|
|
40795
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
40832
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/flow.js
|
|
40796
40833
|
/**
|
|
40797
40834
|
* Validate that flow collection entries are separated by commas.
|
|
40798
40835
|
*
|
|
@@ -41283,7 +41320,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
|
|
|
41283
41320
|
}
|
|
41284
41321
|
|
|
41285
41322
|
//#endregion
|
|
41286
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
41323
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/document.js
|
|
41287
41324
|
/** The flow-composer dispatch wired into every state this module creates. */
|
|
41288
41325
|
const FLOW = {
|
|
41289
41326
|
composeFlowMap,
|
|
@@ -42076,7 +42113,7 @@ function stripOwnComment(node) {
|
|
|
42076
42113
|
}
|
|
42077
42114
|
|
|
42078
42115
|
//#endregion
|
|
42079
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
42116
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/fold.js
|
|
42080
42117
|
/**
|
|
42081
42118
|
* Column-based line folding for a single logical scalar line (YAML 1.2 flow
|
|
42082
42119
|
* folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
|
|
@@ -42325,7 +42362,7 @@ function renderBlockFolded(s, indent, explicitChomp, explicitIndent) {
|
|
|
42325
42362
|
}
|
|
42326
42363
|
|
|
42327
42364
|
//#endregion
|
|
42328
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
42365
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/stringifier.js
|
|
42329
42366
|
/**
|
|
42330
42367
|
* Thrown by the stringifier on its failure paths (circular references). The
|
|
42331
42368
|
* facade catches this and materializes the public stringify error.
|
|
@@ -42457,10 +42494,17 @@ function wouldBeResolved11(s) {
|
|
|
42457
42494
|
* `quoteCompat` is strictly additive: `"yaml-1.1"` additionally quotes
|
|
42458
42495
|
* strings a YAML 1.1 parser would coerce ({@link wouldBeResolved11}) and can
|
|
42459
42496
|
* never un-quote anything the 1.2 rules require quoted.
|
|
42497
|
+
*
|
|
42498
|
+
* `inFlow` is additive too: inside a flow collection the flow indicators
|
|
42499
|
+
* `,[]{}` are plain-unsafe anywhere in the scalar (YAML 1.2 §7.3.3,
|
|
42500
|
+
* `ns-plain-safe(flow-in)` excludes `c-flow-indicator`), where block context
|
|
42501
|
+
* lets them through. Without it a plain `p, q` rendered into `[x, y]` reads
|
|
42502
|
+
* back as three items (#695).
|
|
42460
42503
|
*/
|
|
42461
|
-
function requiresQuoting(s, ignoreType = false, quoteCompat) {
|
|
42504
|
+
function requiresQuoting(s, ignoreType = false, quoteCompat, inFlow = false) {
|
|
42462
42505
|
if (s === "") return true;
|
|
42463
42506
|
if (s.includes("\n")) return true;
|
|
42507
|
+
if (inFlow && /[,[\]{}]/.test(s)) return true;
|
|
42464
42508
|
if (!ignoreType && wouldBeResolved(s)) return true;
|
|
42465
42509
|
if (!ignoreType && quoteCompat === "yaml-1.1" && wouldBeResolved11(s)) return true;
|
|
42466
42510
|
const first = s[0];
|
|
@@ -42543,7 +42587,7 @@ function renderSingleQuoted(s) {
|
|
|
42543
42587
|
* Block literal and block folded styles are always accepted for single-line
|
|
42544
42588
|
* strings even though the output is unusual.
|
|
42545
42589
|
*/
|
|
42546
|
-
function renderString(s, style, indent, ignoreType = false, canonical = false, explicitChomp, parentPosition, quoteStyle = "single", explicitIndent, quoteCompat) {
|
|
42590
|
+
function renderString(s, style, indent, ignoreType = false, canonical = false, explicitChomp, parentPosition, quoteStyle = "single", explicitIndent, quoteCompat, inFlow = false) {
|
|
42547
42591
|
const fidelity = !canonical;
|
|
42548
42592
|
const fidelityIndent = fidelity ? explicitIndent : void 0;
|
|
42549
42593
|
if (s.includes("\n")) {
|
|
@@ -42576,7 +42620,7 @@ function renderString(s, style, indent, ignoreType = false, canonical = false, e
|
|
|
42576
42620
|
if (s === "" && (style === "block-literal" || style === "block-folded")) return renderDoubleQuoted(s, canonical);
|
|
42577
42621
|
switch (style) {
|
|
42578
42622
|
case "plain":
|
|
42579
|
-
if (requiresQuoting(s, ignoreType, quoteCompat)) {
|
|
42623
|
+
if (requiresQuoting(s, ignoreType, quoteCompat, inFlow)) {
|
|
42580
42624
|
if (s.includes(" ") || s.includes("\r")) return renderDoubleQuoted(s, canonical);
|
|
42581
42625
|
for (let i = 0; i < s.length; i++) if (isControlChar(s.charCodeAt(i))) return renderDoubleQuoted(s, canonical);
|
|
42582
42626
|
return quoteStyle === "double" ? renderDoubleQuoted(s, canonical) : renderSingleQuoted(s);
|
|
@@ -42622,7 +42666,8 @@ function createContext(options) {
|
|
|
42622
42666
|
quoteStyle: options?.quoteStyle ?? "single",
|
|
42623
42667
|
quoteCompat: options?.quoteCompat,
|
|
42624
42668
|
forceDefaultStyles: options?.forceDefaultStyles ?? false,
|
|
42625
|
-
seen: /* @__PURE__ */ new Set()
|
|
42669
|
+
seen: /* @__PURE__ */ new Set(),
|
|
42670
|
+
inFlow: options?.inFlow ?? false
|
|
42626
42671
|
};
|
|
42627
42672
|
}
|
|
42628
42673
|
/**
|
|
@@ -42640,7 +42685,7 @@ function stringifyLines(value, ctx, depth, allowFold = true) {
|
|
|
42640
42685
|
if (typeof value === "bigint") return [value.toString()];
|
|
42641
42686
|
if (typeof value === "string") {
|
|
42642
42687
|
const indentStr = " ".repeat(ctx.indent);
|
|
42643
|
-
const rendered = renderString(value, ctx.defaultScalarStyle, indentStr, false, ctx.forceDefaultStyles, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat);
|
|
42688
|
+
const rendered = renderString(value, ctx.defaultScalarStyle, indentStr, false, ctx.forceDefaultStyles, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat, ctx.inFlow);
|
|
42644
42689
|
return (allowFold && ctx.lineWidth > 0 ? foldRenderedScalar(rendered, indentStr, ctx.lineWidth) : rendered).split("\n");
|
|
42645
42690
|
}
|
|
42646
42691
|
if (Array.isArray(value)) {
|
|
@@ -42668,7 +42713,13 @@ function stringifyLines(value, ctx, depth, allowFold = true) {
|
|
|
42668
42713
|
*/
|
|
42669
42714
|
function stringifyArrayLines(arr, ctx, depth) {
|
|
42670
42715
|
if (arr.length === 0) return ["[]"];
|
|
42671
|
-
if (ctx.defaultCollectionStyle === "flow")
|
|
42716
|
+
if (ctx.defaultCollectionStyle === "flow") {
|
|
42717
|
+
const flowCtx = {
|
|
42718
|
+
...ctx,
|
|
42719
|
+
inFlow: true
|
|
42720
|
+
};
|
|
42721
|
+
return [`[${arr.map((item) => stringifyLines(item, flowCtx, depth + 1, false).join(" ")).join(", ")}]`];
|
|
42722
|
+
}
|
|
42672
42723
|
const pad = " ".repeat(ctx.indent);
|
|
42673
42724
|
const lines = [];
|
|
42674
42725
|
for (const item of arr) {
|
|
@@ -42705,10 +42756,16 @@ function stringifyObjectLines(obj, ctx, depth) {
|
|
|
42705
42756
|
const keys = Object.keys(obj);
|
|
42706
42757
|
if (keys.length === 0) return ["{}"];
|
|
42707
42758
|
if (ctx.sortKeys) keys.sort();
|
|
42708
|
-
const renderPlainKey = (k) => renderString(k, "plain", "", false, false, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat);
|
|
42709
|
-
if (ctx.defaultCollectionStyle === "flow")
|
|
42710
|
-
|
|
42711
|
-
|
|
42759
|
+
const renderPlainKey = (k, inFlow = false) => renderString(k, "plain", "", false, false, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat, inFlow);
|
|
42760
|
+
if (ctx.defaultCollectionStyle === "flow") {
|
|
42761
|
+
const flowCtx = {
|
|
42762
|
+
...ctx,
|
|
42763
|
+
inFlow: true
|
|
42764
|
+
};
|
|
42765
|
+
return [`{${keys.map((k) => {
|
|
42766
|
+
return `${renderPlainKey(k, true)}: ${stringifyLines(obj[k], flowCtx, depth + 1, false).join(" ")}`;
|
|
42767
|
+
}).join(", ")}}`];
|
|
42768
|
+
}
|
|
42712
42769
|
const renderKey = (k) => k.includes("\n") ? renderDoubleQuoted(k, ctx.forceDefaultStyles) : renderPlainKey(k);
|
|
42713
42770
|
const pad = " ".repeat(ctx.indent);
|
|
42714
42771
|
const lines = [];
|
|
@@ -42758,7 +42815,7 @@ function stringifyValue(value, options) {
|
|
|
42758
42815
|
}
|
|
42759
42816
|
|
|
42760
42817
|
//#endregion
|
|
42761
|
-
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.
|
|
42818
|
+
//#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/Yaml.js
|
|
42762
42819
|
/**
|
|
42763
42820
|
* Options controlling parse behavior. All fields are omissible; absent fields
|
|
42764
42821
|
* resolve to `strict` `true`, `maxAliasCount` `100` (the alias-based
|
|
@@ -43488,7 +43545,7 @@ function deepEqualValues(a, b) {
|
|
|
43488
43545
|
}
|
|
43489
43546
|
|
|
43490
43547
|
//#endregion
|
|
43491
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
43548
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/documents.js
|
|
43492
43549
|
/**
|
|
43493
43550
|
* An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
|
|
43494
43551
|
* and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
|
|
@@ -43559,7 +43616,7 @@ const selectSoleDocument = (content) => gen(function* () {
|
|
|
43559
43616
|
});
|
|
43560
43617
|
|
|
43561
43618
|
//#endregion
|
|
43562
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
43619
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/pnpm.js
|
|
43563
43620
|
const PnpmImporterDeps = optionalKey(Record(String$2, Struct({
|
|
43564
43621
|
specifier: String$2,
|
|
43565
43622
|
version: String$2
|
|
@@ -43900,7 +43957,7 @@ const toFields$1 = (raw) => gen(function* () {
|
|
|
43900
43957
|
});
|
|
43901
43958
|
|
|
43902
43959
|
//#endregion
|
|
43903
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
43960
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/yarn.js
|
|
43904
43961
|
const YarnLockfileRaw = Record(String$2, Unknown);
|
|
43905
43962
|
const DepRecord = optionalKey(Record(String$2, String$2));
|
|
43906
43963
|
const YarnEntry = Struct({
|
|
@@ -44077,7 +44134,7 @@ const cleanYarnDeps = (deps) => {
|
|
|
44077
44134
|
};
|
|
44078
44135
|
|
|
44079
44136
|
//#endregion
|
|
44080
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
44137
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/Lockfile.js
|
|
44081
44138
|
const EMPTY_IMPORTERS = [];
|
|
44082
44139
|
/**
|
|
44083
44140
|
* Failure of `Lockfile.parse`: the given content is not a valid lockfile of
|
|
@@ -44355,7 +44412,7 @@ var Lockfile = class Lockfile extends Class("Lockfile")({
|
|
|
44355
44412
|
};
|
|
44356
44413
|
|
|
44357
44414
|
//#endregion
|
|
44358
|
-
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.
|
|
44415
|
+
//#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileIntegrity.js
|
|
44359
44416
|
/**
|
|
44360
44417
|
* The minimal manifest shape {@link LockfileIntegrity.compare} checks a
|
|
44361
44418
|
* lockfile against: a package name plus the four optional dependency maps.
|
|
@@ -48251,7 +48308,7 @@ var Package = class Package extends Class("Package")({
|
|
|
48251
48308
|
};
|
|
48252
48309
|
|
|
48253
48310
|
//#endregion
|
|
48254
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
48311
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspacePackage.js
|
|
48255
48312
|
const EMPTY$1 = Object.freeze(Object.create(null));
|
|
48256
48313
|
const EMPTY_MANIFEST = Object.freeze(Object.create(null));
|
|
48257
48314
|
/**
|
|
@@ -48547,7 +48604,7 @@ var WorkspacePackage = class WorkspacePackage extends Class("WorkspacePackage")(
|
|
|
48547
48604
|
};
|
|
48548
48605
|
|
|
48549
48606
|
//#endregion
|
|
48550
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
48607
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Descend.js
|
|
48551
48608
|
/**
|
|
48552
48609
|
* Typed failure raised by `descend`: a directory mid-walk was unreadable
|
|
48553
48610
|
* (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
|
|
@@ -48631,7 +48688,10 @@ const descendImpl = fn("Walker.descend")(function* (pattern, options) {
|
|
|
48631
48688
|
reason: "unreadableDirectory",
|
|
48632
48689
|
path: frame.relative
|
|
48633
48690
|
}));
|
|
48634
|
-
if (onUnreadable === "record") unreadable.push(
|
|
48691
|
+
if (onUnreadable === "record") unreadable.push({
|
|
48692
|
+
path: frame.relative,
|
|
48693
|
+
cause: error
|
|
48694
|
+
});
|
|
48635
48695
|
return succeed$2([]);
|
|
48636
48696
|
}));
|
|
48637
48697
|
for (const entry of entries) {
|
|
@@ -48666,7 +48726,7 @@ function descend(pattern, options) {
|
|
|
48666
48726
|
}
|
|
48667
48727
|
|
|
48668
48728
|
//#endregion
|
|
48669
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
48729
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Expand.js
|
|
48670
48730
|
/**
|
|
48671
48731
|
* Typed failure raised by {@link compileAndExpand}: the single error the
|
|
48672
48732
|
* compile+expand recipe fails with, so a caller catches one tag rather than
|
|
@@ -48757,7 +48817,7 @@ const compileAndExpand = fn("Walker.compileAndExpand")(function* (pattern, optio
|
|
|
48757
48817
|
});
|
|
48758
48818
|
|
|
48759
48819
|
//#endregion
|
|
48760
|
-
//#region ../../node_modules/.pnpm/@effected+walker@0.
|
|
48820
|
+
//#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Walker.js
|
|
48761
48821
|
const ascend = (start, options) => gen(function* () {
|
|
48762
48822
|
const path = yield* Path;
|
|
48763
48823
|
const maxDepth = options?.maxDepth ?? 256;
|
|
@@ -48852,7 +48912,7 @@ var Walker$1 = class {
|
|
|
48852
48912
|
};
|
|
48853
48913
|
|
|
48854
48914
|
//#endregion
|
|
48855
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
48915
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceRoot.js
|
|
48856
48916
|
/**
|
|
48857
48917
|
* The marker filenames {@link WorkspaceRoot} probes for, in priority order.
|
|
48858
48918
|
*
|
|
@@ -49040,7 +49100,7 @@ var WorkspaceRoot = class WorkspaceRoot extends Service()("@effected/workspaces/
|
|
|
49040
49100
|
};
|
|
49041
49101
|
|
|
49042
49102
|
//#endregion
|
|
49043
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49103
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/limits.js
|
|
49044
49104
|
/**
|
|
49045
49105
|
* Hard ceiling on directories the enumerator will visit for one pattern set.
|
|
49046
49106
|
* Guards the pathological case a depth cap alone does not: a wide, shallow
|
|
@@ -49059,7 +49119,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
|
|
|
49059
49119
|
const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
|
|
49060
49120
|
|
|
49061
49121
|
//#endregion
|
|
49062
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49122
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/traverse.js
|
|
49063
49123
|
/** Directory names never descended into. */
|
|
49064
49124
|
const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
|
|
49065
49125
|
/** Join root-relative POSIX segments; `""` is the root itself. */
|
|
@@ -49150,7 +49210,7 @@ var Traversal = class {
|
|
|
49150
49210
|
};
|
|
49151
49211
|
|
|
49152
49212
|
//#endregion
|
|
49153
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49213
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/enumerate.js
|
|
49154
49214
|
/** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
|
|
49155
49215
|
const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
|
|
49156
49216
|
/**
|
|
@@ -49225,7 +49285,7 @@ const enumerate = (root, globs, options) => gen(function* () {
|
|
|
49225
49285
|
});
|
|
49226
49286
|
|
|
49227
49287
|
//#endregion
|
|
49228
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49288
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/patterns.js
|
|
49229
49289
|
const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
|
|
49230
49290
|
/** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
|
|
49231
49291
|
const pnpmPatternsOf = (document) => {
|
|
@@ -49283,7 +49343,7 @@ const readPatterns = (root) => gen(function* () {
|
|
|
49283
49343
|
});
|
|
49284
49344
|
|
|
49285
49345
|
//#endregion
|
|
49286
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49346
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceDiscovery.js
|
|
49287
49347
|
/**
|
|
49288
49348
|
* Raised when a workspace member's `package.json` cannot be read, parsed, or
|
|
49289
49349
|
* used — it is missing, malformed, or lacks a `name`.
|
|
@@ -49833,7 +49893,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends Service()("@effected/w
|
|
|
49833
49893
|
const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
|
|
49834
49894
|
|
|
49835
49895
|
//#endregion
|
|
49836
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
49896
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/DependencyGraph.js
|
|
49837
49897
|
/**
|
|
49838
49898
|
* Raised when the workspace dependency graph cannot be topologically ordered
|
|
49839
49899
|
* because it contains a cycle.
|
|
@@ -50133,7 +50193,7 @@ const kahn = (edges) => {
|
|
|
50133
50193
|
};
|
|
50134
50194
|
|
|
50135
50195
|
//#endregion
|
|
50136
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.15.
|
|
50196
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/GitCommand.js
|
|
50137
50197
|
/** The mask every whole-value sensitive positional is replaced with. */
|
|
50138
50198
|
const REDACTED = "<redacted>";
|
|
50139
50199
|
const secretValue = (value) => ({
|
|
@@ -51347,7 +51407,7 @@ var GitCommand = class {
|
|
|
51347
51407
|
};
|
|
51348
51408
|
|
|
51349
51409
|
//#endregion
|
|
51350
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.15.
|
|
51410
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/internal/run.js
|
|
51351
51411
|
/**
|
|
51352
51412
|
* Spawns `command` and collects its stdout, stderr, and exit code as a single
|
|
51353
51413
|
* triple.
|
|
@@ -51375,7 +51435,7 @@ const runCollected = (command) => scoped(gen(function* () {
|
|
|
51375
51435
|
}));
|
|
51376
51436
|
|
|
51377
51437
|
//#endregion
|
|
51378
|
-
//#region ../../node_modules/.pnpm/@effected+git@0.15.
|
|
51438
|
+
//#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/Git.js
|
|
51379
51439
|
/** git's own ceiling: a run that has not answered in 30s is not going to. */
|
|
51380
51440
|
const GIT_TIMEOUT = seconds(30);
|
|
51381
51441
|
/**
|
|
@@ -51558,12 +51618,24 @@ const sshEnv = (resolved) => match$3(withBatchMode(resolved), {
|
|
|
51558
51618
|
*
|
|
51559
51619
|
* @remarks
|
|
51560
51620
|
* `exitCode` and `stderr` are populated when git actually ran. `detail`
|
|
51561
|
-
* carries a human-readable explanation
|
|
51562
|
-
* `PlatformError
|
|
51563
|
-
* produced
|
|
51564
|
-
* discriminates a pre-spawn guard rejection (`"refused"`) from a
|
|
51565
|
-
* failure (`"failed"`) structurally, so composed retry/fallback
|
|
51566
|
-
* to parse the prose in `message` or `detail`.
|
|
51621
|
+
* carries a human-readable explanation whenever the failure is not summed up
|
|
51622
|
+
* by an exit code: an absorbed spawn-level `PlatformError`, a per-run timeout,
|
|
51623
|
+
* a pre-spawn guard refusal, or output git produced that the member could not
|
|
51624
|
+
* parse. `kind` discriminates a pre-spawn guard rejection (`"refused"`) from a
|
|
51625
|
+
* genuine git failure (`"failed"`) structurally, so composed retry/fallback
|
|
51626
|
+
* logic never has to parse the prose in `message` or `detail`.
|
|
51627
|
+
*
|
|
51628
|
+
* **`message` is the rendering; `detail` is the datum.** `message` composes a
|
|
51629
|
+
* one-line prose from the redacted argv, the cwd, and — whenever `detail` is
|
|
51630
|
+
* set — `detail` itself. A consumer forwarding the underlying reason should map
|
|
51631
|
+
* `detail` through only when it is set: falling back to `message` nests one
|
|
51632
|
+
* rendered message inside another
|
|
51633
|
+
* (`git … in cwd: git … in cwd failed (exit N): …`). When `detail` is absent,
|
|
51634
|
+
* git ran and failed — `exitCode` and `stderr` are the data to forward. Note
|
|
51635
|
+
* that `detail` may be set after git ran
|
|
51636
|
+
* and exited successfully (e.g. `Git.log` sets `detail: "unparseable log output: …"`
|
|
51637
|
+
* with `kind: "failed"`), so routing on `detail !== undefined` rather than
|
|
51638
|
+
* assuming git never started is the correct consumer boundary.
|
|
51567
51639
|
*
|
|
51568
51640
|
* @public
|
|
51569
51641
|
*/
|
|
@@ -51593,7 +51665,12 @@ var GitCommandError = class extends TaggedError()("GitCommandError", {
|
|
|
51593
51665
|
exitCode: optionalKey(Number$1),
|
|
51594
51666
|
/** git's stderr, captured under `LC_ALL=C`. */
|
|
51595
51667
|
stderr: String$2,
|
|
51596
|
-
/**
|
|
51668
|
+
/**
|
|
51669
|
+
* A human-readable reason, set whenever an exit code does not sum up the
|
|
51670
|
+
* failure: an absorbed spawn failure, a timeout, a pre-spawn guard refusal,
|
|
51671
|
+
* or output git produced that the member could not parse. `message` renders
|
|
51672
|
+
* it verbatim when present.
|
|
51673
|
+
*/
|
|
51597
51674
|
detail: optionalKey(String$2)
|
|
51598
51675
|
}) {
|
|
51599
51676
|
/** Renders the invocation and its failure into a one-line message. */
|
|
@@ -53774,6 +53851,19 @@ const notStubbed = (method) => () => die(/* @__PURE__ */ new Error(`Git.makeTest
|
|
|
53774
53851
|
* that — a caller running two mutating calls (or a mutating call alongside a
|
|
53775
53852
|
* read) against one `cwd` at once owns the race.
|
|
53776
53853
|
*
|
|
53854
|
+
* **Every spawn already runs under a 30 s timeout** (this module's
|
|
53855
|
+
* `GIT_TIMEOUT`): a command that has not answered in time fails as a
|
|
53856
|
+
* {@link GitCommandError} with `detail` set to `"timed out after 30s"`.
|
|
53857
|
+
*
|
|
53858
|
+
* That ceiling is per run, not per member call. The network-touching members
|
|
53859
|
+
* (`lsRemote`, `fetch`, `fetchUnshallow`, `push`, `pull`, `submoduleAdd`,
|
|
53860
|
+
* `submoduleUpdate`) first resolve their ssh command with up to two concurrent
|
|
53861
|
+
* local `git config` reads, each bounded separately, so their worst case is
|
|
53862
|
+
* 60 s; `fetchAny`, which runs `fetch` twice, is 120 s. A consumer merely
|
|
53863
|
+
* duplicating a 30 s layer buys nothing but two ceilings racing each other;
|
|
53864
|
+
* one whose budget is tighter than the figures above still needs its own
|
|
53865
|
+
* (#652).
|
|
53866
|
+
*
|
|
53777
53867
|
* **Redaction policy (documented, not just convention).** Error values
|
|
53778
53868
|
* persist only the constructor's REDACTED argv (see `GitCommandError.args`),
|
|
53779
53869
|
* and span annotations carry stable identifiers only — `cwd`, refs, keys,
|
|
@@ -53935,7 +54025,7 @@ var Git = class Git extends Service()("@effected/git/Git") {
|
|
|
53935
54025
|
};
|
|
53936
54026
|
|
|
53937
54027
|
//#endregion
|
|
53938
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
54028
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/ChangeDetector.js
|
|
53939
54029
|
/**
|
|
53940
54030
|
* Which git refs to compare, and whether to fold in the working tree.
|
|
53941
54031
|
*
|
|
@@ -54230,7 +54320,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
|
|
|
54230
54320
|
}
|
|
54231
54321
|
|
|
54232
54322
|
//#endregion
|
|
54233
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
54323
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/catalogs.js
|
|
54234
54324
|
/** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
|
|
54235
54325
|
const inlineCatalogs = (manifest) => {
|
|
54236
54326
|
if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
|
|
@@ -54296,7 +54386,7 @@ const rangeOf = (catalogs, dependency, specifier) => {
|
|
|
54296
54386
|
};
|
|
54297
54387
|
|
|
54298
54388
|
//#endregion
|
|
54299
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
54389
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/ConfigDependencyHooks.js
|
|
54300
54390
|
/**
|
|
54301
54391
|
* The empty {@link PeerDependencyRules}: every axis present and empty.
|
|
54302
54392
|
*
|
|
@@ -54779,7 +54869,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends Service()("@effe
|
|
|
54779
54869
|
};
|
|
54780
54870
|
|
|
54781
54871
|
//#endregion
|
|
54782
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
54872
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/PackageManagerName.js
|
|
54783
54873
|
/**
|
|
54784
54874
|
* The four package managers this package understands.
|
|
54785
54875
|
*
|
|
@@ -55155,7 +55245,7 @@ var PackageManagerDetector = class PackageManagerDetector extends Service()("@ef
|
|
|
55155
55245
|
};
|
|
55156
55246
|
|
|
55157
55247
|
//#endregion
|
|
55158
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
55248
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/LockfileReader.js
|
|
55159
55249
|
/**
|
|
55160
55250
|
* Raised when the workspace's lockfile cannot be read off disk.
|
|
55161
55251
|
*
|
|
@@ -55336,7 +55426,7 @@ var LockfileReader = class LockfileReader extends Service()("@effected/workspace
|
|
|
55336
55426
|
};
|
|
55337
55427
|
|
|
55338
55428
|
//#endregion
|
|
55339
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
55429
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Publishability.js
|
|
55340
55430
|
/** The public npm registry, used when `publishConfig.registry` says nothing. */
|
|
55341
55431
|
const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
|
|
55342
55432
|
/**
|
|
@@ -55496,7 +55586,7 @@ var PublishabilityDetector = class extends Service()("@effected/workspaces/Publi
|
|
|
55496
55586
|
};
|
|
55497
55587
|
|
|
55498
55588
|
//#endregion
|
|
55499
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
55589
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/importerVersions.js
|
|
55500
55590
|
/**
|
|
55501
55591
|
* Strip pnpm's peer-disambiguation suffix from a recorded importer version.
|
|
55502
55592
|
*
|
|
@@ -55583,7 +55673,7 @@ const unanimousVersionOf = (index, dependency) => {
|
|
|
55583
55673
|
};
|
|
55584
55674
|
|
|
55585
55675
|
//#endregion
|
|
55586
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
55676
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceCatalogs.js
|
|
55587
55677
|
/**
|
|
55588
55678
|
* An immutable, fully-normalized catalog collection — the one catalog
|
|
55589
55679
|
* resolution semantic in the package.
|
|
@@ -56161,7 +56251,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends Service()("@effected/wor
|
|
|
56161
56251
|
};
|
|
56162
56252
|
|
|
56163
56253
|
//#endregion
|
|
56164
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
56254
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
|
|
56165
56255
|
const EMPTY = Object.freeze(Object.create(null));
|
|
56166
56256
|
const DependencyMap = Record(String$2, String$2).pipe(withDecodingDefaultKey(succeed$2(EMPTY)), withConstructorDefault(succeed$2(EMPTY)));
|
|
56167
56257
|
/**
|
|
@@ -56574,7 +56664,7 @@ var WorkspaceStateSnapshot = class WorkspaceStateSnapshot extends Class("Workspa
|
|
|
56574
56664
|
};
|
|
56575
56665
|
|
|
56576
56666
|
//#endregion
|
|
56577
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
56667
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceSnapshots.js
|
|
56578
56668
|
/** Whether `value` is a non-null, non-array object. */
|
|
56579
56669
|
const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
56580
56670
|
/** Whether every value in a record is a string — a usable dependency map. */
|
|
@@ -56853,7 +56943,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends Service()("@effected/w
|
|
|
56853
56943
|
};
|
|
56854
56944
|
|
|
56855
56945
|
//#endregion
|
|
56856
|
-
//#region ../../node_modules/.pnpm/@effected+workspaces@0.
|
|
56946
|
+
//#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Workspaces.js
|
|
56857
56947
|
const compose = (options, catalogsFactory) => {
|
|
56858
56948
|
const roots = WorkspaceRoot.layer;
|
|
56859
56949
|
const detector = PackageManagerDetector.layer;
|
|
@@ -60010,7 +60100,7 @@ const DependencyTableRowSchema = Struct({
|
|
|
60010
60100
|
const DependencyTableSchema = ArraySchema(DependencyTableRowSchema).check(isMinLength(1));
|
|
60011
60101
|
|
|
60012
60102
|
//#endregion
|
|
60013
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
60103
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/MarkdownNode.js
|
|
60014
60104
|
/**
|
|
60015
60105
|
* A single point in a source document: 1-based `line` and `column`, 0-based
|
|
60016
60106
|
* `offset`.
|
|
@@ -60817,7 +60907,7 @@ const MarkdownNode = suspend$1(() => Union([
|
|
|
60817
60907
|
]));
|
|
60818
60908
|
|
|
60819
60909
|
//#endregion
|
|
60820
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
60910
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/frontmatter.js
|
|
60821
60911
|
const FENCES = /* @__PURE__ */ new Map([
|
|
60822
60912
|
["---", {
|
|
60823
60913
|
format: "yaml",
|
|
@@ -60872,7 +60962,7 @@ const scanFrontmatter = (lines, text) => {
|
|
|
60872
60962
|
};
|
|
60873
60963
|
|
|
60874
60964
|
//#endregion
|
|
60875
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
60965
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/carriers.js
|
|
60876
60966
|
/**
|
|
60877
60967
|
* P1's error-code vocabulary. Widens as later phases add parse-error kinds;
|
|
60878
60968
|
* P1 registers exactly one, the hardening-guard trip.
|
|
@@ -60913,7 +61003,7 @@ var GuardExceeded = class extends Error {
|
|
|
60913
61003
|
const isGuardExceeded = (u) => u instanceof GuardExceeded;
|
|
60914
61004
|
|
|
60915
61005
|
//#endregion
|
|
60916
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61006
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/MarkdownDiagnostic.js
|
|
60917
61007
|
/**
|
|
60918
61008
|
* Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
|
|
60919
61009
|
* registers exactly the hardening-guard trip; later phases widen the union
|
|
@@ -60994,7 +61084,7 @@ function lineChar(text, offset) {
|
|
|
60994
61084
|
}
|
|
60995
61085
|
|
|
60996
61086
|
//#endregion
|
|
60997
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61087
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockTypes.js
|
|
60998
61088
|
/** Narrow materialized children to the flow content most constructs contain. */
|
|
60999
61089
|
const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
|
|
61000
61090
|
/** Narrow materialized children to the list items a list contains. */
|
|
@@ -61020,7 +61110,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
|
|
|
61020
61110
|
});
|
|
61021
61111
|
|
|
61022
61112
|
//#endregion
|
|
61023
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61113
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/preprocess.js
|
|
61024
61114
|
/**
|
|
61025
61115
|
* Split `text` into lines, preserving each line's absolute start offset.
|
|
61026
61116
|
*
|
|
@@ -61075,7 +61165,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
|
|
|
61075
61165
|
const columnsToNextTabStop = (column) => 4 - column % 4;
|
|
61076
61166
|
|
|
61077
61167
|
//#endregion
|
|
61078
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61168
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/htmlTags.js
|
|
61079
61169
|
const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
|
|
61080
61170
|
/** An opening tag, with any attributes and an optional self-closing slash. */
|
|
61081
61171
|
const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
|
|
@@ -61087,7 +61177,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
|
|
|
61087
61177
|
const reHtmlTag = new RegExp(`^${HTMLTAG}`);
|
|
61088
61178
|
|
|
61089
61179
|
//#endregion
|
|
61090
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61180
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
|
|
61091
61181
|
const C_LESSTHAN$3 = 60;
|
|
61092
61182
|
const reHtmlBlockOpen = [
|
|
61093
61183
|
/./,
|
|
@@ -61154,7 +61244,7 @@ const htmlBlockStart = {
|
|
|
61154
61244
|
};
|
|
61155
61245
|
|
|
61156
61246
|
//#endregion
|
|
61157
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61247
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/atxHeading.js
|
|
61158
61248
|
const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
|
|
61159
61249
|
const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
|
|
61160
61250
|
const reClosingHashes = /[ \t]+#+[ \t]*$/;
|
|
@@ -61205,7 +61295,7 @@ const atxHeadingStart = {
|
|
|
61205
61295
|
};
|
|
61206
61296
|
|
|
61207
61297
|
//#endregion
|
|
61208
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61298
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/blockquote.js
|
|
61209
61299
|
const C_GREATERTHAN = 62;
|
|
61210
61300
|
/** Blockquote: continues while each line carries its `>` marker. */
|
|
61211
61301
|
const blockquoteConstruct = {
|
|
@@ -61240,12 +61330,12 @@ const blockquoteStart = {
|
|
|
61240
61330
|
};
|
|
61241
61331
|
|
|
61242
61332
|
//#endregion
|
|
61243
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61333
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/entityMap.js
|
|
61244
61334
|
/** The HTML5 named character references, keyed without `&` or `;`. */
|
|
61245
61335
|
const ENTITY_MAP = new Map(JSON.parse("[[\"AElig\",\"Æ\"],[\"AMP\",\"&\"],[\"Aacute\",\"Á\"],[\"Abreve\",\"Ă\"],[\"Acirc\",\"Â\"],[\"Acy\",\"А\"],[\"Afr\",\"𝔄\"],[\"Agrave\",\"À\"],[\"Alpha\",\"Α\"],[\"Amacr\",\"Ā\"],[\"And\",\"⩓\"],[\"Aogon\",\"Ą\"],[\"Aopf\",\"𝔸\"],[\"ApplyFunction\",\"\"],[\"Aring\",\"Å\"],[\"Ascr\",\"𝒜\"],[\"Assign\",\"≔\"],[\"Atilde\",\"Ã\"],[\"Auml\",\"Ä\"],[\"Backslash\",\"∖\"],[\"Barv\",\"⫧\"],[\"Barwed\",\"⌆\"],[\"Bcy\",\"Б\"],[\"Because\",\"∵\"],[\"Bernoullis\",\"ℬ\"],[\"Beta\",\"Β\"],[\"Bfr\",\"𝔅\"],[\"Bopf\",\"𝔹\"],[\"Breve\",\"˘\"],[\"Bscr\",\"ℬ\"],[\"Bumpeq\",\"≎\"],[\"CHcy\",\"Ч\"],[\"COPY\",\"©\"],[\"Cacute\",\"Ć\"],[\"Cap\",\"⋒\"],[\"CapitalDifferentialD\",\"ⅅ\"],[\"Cayleys\",\"ℭ\"],[\"Ccaron\",\"Č\"],[\"Ccedil\",\"Ç\"],[\"Ccirc\",\"Ĉ\"],[\"Cconint\",\"∰\"],[\"Cdot\",\"Ċ\"],[\"Cedilla\",\"¸\"],[\"CenterDot\",\"·\"],[\"Cfr\",\"ℭ\"],[\"Chi\",\"Χ\"],[\"CircleDot\",\"⊙\"],[\"CircleMinus\",\"⊖\"],[\"CirclePlus\",\"⊕\"],[\"CircleTimes\",\"⊗\"],[\"ClockwiseContourIntegral\",\"∲\"],[\"CloseCurlyDoubleQuote\",\"”\"],[\"CloseCurlyQuote\",\"’\"],[\"Colon\",\"∷\"],[\"Colone\",\"⩴\"],[\"Congruent\",\"≡\"],[\"Conint\",\"∯\"],[\"ContourIntegral\",\"∮\"],[\"Copf\",\"ℂ\"],[\"Coproduct\",\"∐\"],[\"CounterClockwiseContourIntegral\",\"∳\"],[\"Cross\",\"⨯\"],[\"Cscr\",\"𝒞\"],[\"Cup\",\"⋓\"],[\"CupCap\",\"≍\"],[\"DD\",\"ⅅ\"],[\"DDotrahd\",\"⤑\"],[\"DJcy\",\"Ђ\"],[\"DScy\",\"Ѕ\"],[\"DZcy\",\"Џ\"],[\"Dagger\",\"‡\"],[\"Darr\",\"↡\"],[\"Dashv\",\"⫤\"],[\"Dcaron\",\"Ď\"],[\"Dcy\",\"Д\"],[\"Del\",\"∇\"],[\"Delta\",\"Δ\"],[\"Dfr\",\"𝔇\"],[\"DiacriticalAcute\",\"´\"],[\"DiacriticalDot\",\"˙\"],[\"DiacriticalDoubleAcute\",\"˝\"],[\"DiacriticalGrave\",\"`\"],[\"DiacriticalTilde\",\"˜\"],[\"Diamond\",\"⋄\"],[\"DifferentialD\",\"ⅆ\"],[\"Dopf\",\"𝔻\"],[\"Dot\",\"¨\"],[\"DotDot\",\"⃜\"],[\"DotEqual\",\"≐\"],[\"DoubleContourIntegral\",\"∯\"],[\"DoubleDot\",\"¨\"],[\"DoubleDownArrow\",\"⇓\"],[\"DoubleLeftArrow\",\"⇐\"],[\"DoubleLeftRightArrow\",\"⇔\"],[\"DoubleLeftTee\",\"⫤\"],[\"DoubleLongLeftArrow\",\"⟸\"],[\"DoubleLongLeftRightArrow\",\"⟺\"],[\"DoubleLongRightArrow\",\"⟹\"],[\"DoubleRightArrow\",\"⇒\"],[\"DoubleRightTee\",\"⊨\"],[\"DoubleUpArrow\",\"⇑\"],[\"DoubleUpDownArrow\",\"⇕\"],[\"DoubleVerticalBar\",\"∥\"],[\"DownArrow\",\"↓\"],[\"DownArrowBar\",\"⤓\"],[\"DownArrowUpArrow\",\"⇵\"],[\"DownBreve\",\"̑\"],[\"DownLeftRightVector\",\"⥐\"],[\"DownLeftTeeVector\",\"⥞\"],[\"DownLeftVector\",\"↽\"],[\"DownLeftVectorBar\",\"⥖\"],[\"DownRightTeeVector\",\"⥟\"],[\"DownRightVector\",\"⇁\"],[\"DownRightVectorBar\",\"⥗\"],[\"DownTee\",\"⊤\"],[\"DownTeeArrow\",\"↧\"],[\"Downarrow\",\"⇓\"],[\"Dscr\",\"𝒟\"],[\"Dstrok\",\"Đ\"],[\"ENG\",\"Ŋ\"],[\"ETH\",\"Ð\"],[\"Eacute\",\"É\"],[\"Ecaron\",\"Ě\"],[\"Ecirc\",\"Ê\"],[\"Ecy\",\"Э\"],[\"Edot\",\"Ė\"],[\"Efr\",\"𝔈\"],[\"Egrave\",\"È\"],[\"Element\",\"∈\"],[\"Emacr\",\"Ē\"],[\"EmptySmallSquare\",\"◻\"],[\"EmptyVerySmallSquare\",\"▫\"],[\"Eogon\",\"Ę\"],[\"Eopf\",\"𝔼\"],[\"Epsilon\",\"Ε\"],[\"Equal\",\"⩵\"],[\"EqualTilde\",\"≂\"],[\"Equilibrium\",\"⇌\"],[\"Escr\",\"ℰ\"],[\"Esim\",\"⩳\"],[\"Eta\",\"Η\"],[\"Euml\",\"Ë\"],[\"Exists\",\"∃\"],[\"ExponentialE\",\"ⅇ\"],[\"Fcy\",\"Ф\"],[\"Ffr\",\"𝔉\"],[\"FilledSmallSquare\",\"◼\"],[\"FilledVerySmallSquare\",\"▪\"],[\"Fopf\",\"𝔽\"],[\"ForAll\",\"∀\"],[\"Fouriertrf\",\"ℱ\"],[\"Fscr\",\"ℱ\"],[\"GJcy\",\"Ѓ\"],[\"GT\",\">\"],[\"Gamma\",\"Γ\"],[\"Gammad\",\"Ϝ\"],[\"Gbreve\",\"Ğ\"],[\"Gcedil\",\"Ģ\"],[\"Gcirc\",\"Ĝ\"],[\"Gcy\",\"Г\"],[\"Gdot\",\"Ġ\"],[\"Gfr\",\"𝔊\"],[\"Gg\",\"⋙\"],[\"Gopf\",\"𝔾\"],[\"GreaterEqual\",\"≥\"],[\"GreaterEqualLess\",\"⋛\"],[\"GreaterFullEqual\",\"≧\"],[\"GreaterGreater\",\"⪢\"],[\"GreaterLess\",\"≷\"],[\"GreaterSlantEqual\",\"⩾\"],[\"GreaterTilde\",\"≳\"],[\"Gscr\",\"𝒢\"],[\"Gt\",\"≫\"],[\"HARDcy\",\"Ъ\"],[\"Hacek\",\"ˇ\"],[\"Hat\",\"^\"],[\"Hcirc\",\"Ĥ\"],[\"Hfr\",\"ℌ\"],[\"HilbertSpace\",\"ℋ\"],[\"Hopf\",\"ℍ\"],[\"HorizontalLine\",\"─\"],[\"Hscr\",\"ℋ\"],[\"Hstrok\",\"Ħ\"],[\"HumpDownHump\",\"≎\"],[\"HumpEqual\",\"≏\"],[\"IEcy\",\"Е\"],[\"IJlig\",\"IJ\"],[\"IOcy\",\"Ё\"],[\"Iacute\",\"Í\"],[\"Icirc\",\"Î\"],[\"Icy\",\"И\"],[\"Idot\",\"İ\"],[\"Ifr\",\"ℑ\"],[\"Igrave\",\"Ì\"],[\"Im\",\"ℑ\"],[\"Imacr\",\"Ī\"],[\"ImaginaryI\",\"ⅈ\"],[\"Implies\",\"⇒\"],[\"Int\",\"∬\"],[\"Integral\",\"∫\"],[\"Intersection\",\"⋂\"],[\"InvisibleComma\",\"\"],[\"InvisibleTimes\",\"\"],[\"Iogon\",\"Į\"],[\"Iopf\",\"𝕀\"],[\"Iota\",\"Ι\"],[\"Iscr\",\"ℐ\"],[\"Itilde\",\"Ĩ\"],[\"Iukcy\",\"І\"],[\"Iuml\",\"Ï\"],[\"Jcirc\",\"Ĵ\"],[\"Jcy\",\"Й\"],[\"Jfr\",\"𝔍\"],[\"Jopf\",\"𝕁\"],[\"Jscr\",\"𝒥\"],[\"Jsercy\",\"Ј\"],[\"Jukcy\",\"Є\"],[\"KHcy\",\"Х\"],[\"KJcy\",\"Ќ\"],[\"Kappa\",\"Κ\"],[\"Kcedil\",\"Ķ\"],[\"Kcy\",\"К\"],[\"Kfr\",\"𝔎\"],[\"Kopf\",\"𝕂\"],[\"Kscr\",\"𝒦\"],[\"LJcy\",\"Љ\"],[\"LT\",\"<\"],[\"Lacute\",\"Ĺ\"],[\"Lambda\",\"Λ\"],[\"Lang\",\"⟪\"],[\"Laplacetrf\",\"ℒ\"],[\"Larr\",\"↞\"],[\"Lcaron\",\"Ľ\"],[\"Lcedil\",\"Ļ\"],[\"Lcy\",\"Л\"],[\"LeftAngleBracket\",\"⟨\"],[\"LeftArrow\",\"←\"],[\"LeftArrowBar\",\"⇤\"],[\"LeftArrowRightArrow\",\"⇆\"],[\"LeftCeiling\",\"⌈\"],[\"LeftDoubleBracket\",\"⟦\"],[\"LeftDownTeeVector\",\"⥡\"],[\"LeftDownVector\",\"⇃\"],[\"LeftDownVectorBar\",\"⥙\"],[\"LeftFloor\",\"⌊\"],[\"LeftRightArrow\",\"↔\"],[\"LeftRightVector\",\"⥎\"],[\"LeftTee\",\"⊣\"],[\"LeftTeeArrow\",\"↤\"],[\"LeftTeeVector\",\"⥚\"],[\"LeftTriangle\",\"⊲\"],[\"LeftTriangleBar\",\"⧏\"],[\"LeftTriangleEqual\",\"⊴\"],[\"LeftUpDownVector\",\"⥑\"],[\"LeftUpTeeVector\",\"⥠\"],[\"LeftUpVector\",\"↿\"],[\"LeftUpVectorBar\",\"⥘\"],[\"LeftVector\",\"↼\"],[\"LeftVectorBar\",\"⥒\"],[\"Leftarrow\",\"⇐\"],[\"Leftrightarrow\",\"⇔\"],[\"LessEqualGreater\",\"⋚\"],[\"LessFullEqual\",\"≦\"],[\"LessGreater\",\"≶\"],[\"LessLess\",\"⪡\"],[\"LessSlantEqual\",\"⩽\"],[\"LessTilde\",\"≲\"],[\"Lfr\",\"𝔏\"],[\"Ll\",\"⋘\"],[\"Lleftarrow\",\"⇚\"],[\"Lmidot\",\"Ŀ\"],[\"LongLeftArrow\",\"⟵\"],[\"LongLeftRightArrow\",\"⟷\"],[\"LongRightArrow\",\"⟶\"],[\"Longleftarrow\",\"⟸\"],[\"Longleftrightarrow\",\"⟺\"],[\"Longrightarrow\",\"⟹\"],[\"Lopf\",\"𝕃\"],[\"LowerLeftArrow\",\"↙\"],[\"LowerRightArrow\",\"↘\"],[\"Lscr\",\"ℒ\"],[\"Lsh\",\"↰\"],[\"Lstrok\",\"Ł\"],[\"Lt\",\"≪\"],[\"Map\",\"⤅\"],[\"Mcy\",\"М\"],[\"MediumSpace\",\" \"],[\"Mellintrf\",\"ℳ\"],[\"Mfr\",\"𝔐\"],[\"MinusPlus\",\"∓\"],[\"Mopf\",\"𝕄\"],[\"Mscr\",\"ℳ\"],[\"Mu\",\"Μ\"],[\"NJcy\",\"Њ\"],[\"Nacute\",\"Ń\"],[\"Ncaron\",\"Ň\"],[\"Ncedil\",\"Ņ\"],[\"Ncy\",\"Н\"],[\"NegativeMediumSpace\",\"\"],[\"NegativeThickSpace\",\"\"],[\"NegativeThinSpace\",\"\"],[\"NegativeVeryThinSpace\",\"\"],[\"NestedGreaterGreater\",\"≫\"],[\"NestedLessLess\",\"≪\"],[\"NewLine\",\"\\n\"],[\"Nfr\",\"𝔑\"],[\"NoBreak\",\"\"],[\"NonBreakingSpace\",\"\xA0\"],[\"Nopf\",\"ℕ\"],[\"Not\",\"⫬\"],[\"NotCongruent\",\"≢\"],[\"NotCupCap\",\"≭\"],[\"NotDoubleVerticalBar\",\"∦\"],[\"NotElement\",\"∉\"],[\"NotEqual\",\"≠\"],[\"NotEqualTilde\",\"≂̸\"],[\"NotExists\",\"∄\"],[\"NotGreater\",\"≯\"],[\"NotGreaterEqual\",\"≱\"],[\"NotGreaterFullEqual\",\"≧̸\"],[\"NotGreaterGreater\",\"≫̸\"],[\"NotGreaterLess\",\"≹\"],[\"NotGreaterSlantEqual\",\"⩾̸\"],[\"NotGreaterTilde\",\"≵\"],[\"NotHumpDownHump\",\"≎̸\"],[\"NotHumpEqual\",\"≏̸\"],[\"NotLeftTriangle\",\"⋪\"],[\"NotLeftTriangleBar\",\"⧏̸\"],[\"NotLeftTriangleEqual\",\"⋬\"],[\"NotLess\",\"≮\"],[\"NotLessEqual\",\"≰\"],[\"NotLessGreater\",\"≸\"],[\"NotLessLess\",\"≪̸\"],[\"NotLessSlantEqual\",\"⩽̸\"],[\"NotLessTilde\",\"≴\"],[\"NotNestedGreaterGreater\",\"⪢̸\"],[\"NotNestedLessLess\",\"⪡̸\"],[\"NotPrecedes\",\"⊀\"],[\"NotPrecedesEqual\",\"⪯̸\"],[\"NotPrecedesSlantEqual\",\"⋠\"],[\"NotReverseElement\",\"∌\"],[\"NotRightTriangle\",\"⋫\"],[\"NotRightTriangleBar\",\"⧐̸\"],[\"NotRightTriangleEqual\",\"⋭\"],[\"NotSquareSubset\",\"⊏̸\"],[\"NotSquareSubsetEqual\",\"⋢\"],[\"NotSquareSuperset\",\"⊐̸\"],[\"NotSquareSupersetEqual\",\"⋣\"],[\"NotSubset\",\"⊂⃒\"],[\"NotSubsetEqual\",\"⊈\"],[\"NotSucceeds\",\"⊁\"],[\"NotSucceedsEqual\",\"⪰̸\"],[\"NotSucceedsSlantEqual\",\"⋡\"],[\"NotSucceedsTilde\",\"≿̸\"],[\"NotSuperset\",\"⊃⃒\"],[\"NotSupersetEqual\",\"⊉\"],[\"NotTilde\",\"≁\"],[\"NotTildeEqual\",\"≄\"],[\"NotTildeFullEqual\",\"≇\"],[\"NotTildeTilde\",\"≉\"],[\"NotVerticalBar\",\"∤\"],[\"Nscr\",\"𝒩\"],[\"Ntilde\",\"Ñ\"],[\"Nu\",\"Ν\"],[\"OElig\",\"Œ\"],[\"Oacute\",\"Ó\"],[\"Ocirc\",\"Ô\"],[\"Ocy\",\"О\"],[\"Odblac\",\"Ő\"],[\"Ofr\",\"𝔒\"],[\"Ograve\",\"Ò\"],[\"Omacr\",\"Ō\"],[\"Omega\",\"Ω\"],[\"Omicron\",\"Ο\"],[\"Oopf\",\"𝕆\"],[\"OpenCurlyDoubleQuote\",\"“\"],[\"OpenCurlyQuote\",\"‘\"],[\"Or\",\"⩔\"],[\"Oscr\",\"𝒪\"],[\"Oslash\",\"Ø\"],[\"Otilde\",\"Õ\"],[\"Otimes\",\"⨷\"],[\"Ouml\",\"Ö\"],[\"OverBar\",\"‾\"],[\"OverBrace\",\"⏞\"],[\"OverBracket\",\"⎴\"],[\"OverParenthesis\",\"⏜\"],[\"PartialD\",\"∂\"],[\"Pcy\",\"П\"],[\"Pfr\",\"𝔓\"],[\"Phi\",\"Φ\"],[\"Pi\",\"Π\"],[\"PlusMinus\",\"±\"],[\"Poincareplane\",\"ℌ\"],[\"Popf\",\"ℙ\"],[\"Pr\",\"⪻\"],[\"Precedes\",\"≺\"],[\"PrecedesEqual\",\"⪯\"],[\"PrecedesSlantEqual\",\"≼\"],[\"PrecedesTilde\",\"≾\"],[\"Prime\",\"″\"],[\"Product\",\"∏\"],[\"Proportion\",\"∷\"],[\"Proportional\",\"∝\"],[\"Pscr\",\"𝒫\"],[\"Psi\",\"Ψ\"],[\"QUOT\",\"\\\"\"],[\"Qfr\",\"𝔔\"],[\"Qopf\",\"ℚ\"],[\"Qscr\",\"𝒬\"],[\"RBarr\",\"⤐\"],[\"REG\",\"®\"],[\"Racute\",\"Ŕ\"],[\"Rang\",\"⟫\"],[\"Rarr\",\"↠\"],[\"Rarrtl\",\"⤖\"],[\"Rcaron\",\"Ř\"],[\"Rcedil\",\"Ŗ\"],[\"Rcy\",\"Р\"],[\"Re\",\"ℜ\"],[\"ReverseElement\",\"∋\"],[\"ReverseEquilibrium\",\"⇋\"],[\"ReverseUpEquilibrium\",\"⥯\"],[\"Rfr\",\"ℜ\"],[\"Rho\",\"Ρ\"],[\"RightAngleBracket\",\"⟩\"],[\"RightArrow\",\"→\"],[\"RightArrowBar\",\"⇥\"],[\"RightArrowLeftArrow\",\"⇄\"],[\"RightCeiling\",\"⌉\"],[\"RightDoubleBracket\",\"⟧\"],[\"RightDownTeeVector\",\"⥝\"],[\"RightDownVector\",\"⇂\"],[\"RightDownVectorBar\",\"⥕\"],[\"RightFloor\",\"⌋\"],[\"RightTee\",\"⊢\"],[\"RightTeeArrow\",\"↦\"],[\"RightTeeVector\",\"⥛\"],[\"RightTriangle\",\"⊳\"],[\"RightTriangleBar\",\"⧐\"],[\"RightTriangleEqual\",\"⊵\"],[\"RightUpDownVector\",\"⥏\"],[\"RightUpTeeVector\",\"⥜\"],[\"RightUpVector\",\"↾\"],[\"RightUpVectorBar\",\"⥔\"],[\"RightVector\",\"⇀\"],[\"RightVectorBar\",\"⥓\"],[\"Rightarrow\",\"⇒\"],[\"Ropf\",\"ℝ\"],[\"RoundImplies\",\"⥰\"],[\"Rrightarrow\",\"⇛\"],[\"Rscr\",\"ℛ\"],[\"Rsh\",\"↱\"],[\"RuleDelayed\",\"⧴\"],[\"SHCHcy\",\"Щ\"],[\"SHcy\",\"Ш\"],[\"SOFTcy\",\"Ь\"],[\"Sacute\",\"Ś\"],[\"Sc\",\"⪼\"],[\"Scaron\",\"Š\"],[\"Scedil\",\"Ş\"],[\"Scirc\",\"Ŝ\"],[\"Scy\",\"С\"],[\"Sfr\",\"𝔖\"],[\"ShortDownArrow\",\"↓\"],[\"ShortLeftArrow\",\"←\"],[\"ShortRightArrow\",\"→\"],[\"ShortUpArrow\",\"↑\"],[\"Sigma\",\"Σ\"],[\"SmallCircle\",\"∘\"],[\"Sopf\",\"𝕊\"],[\"Sqrt\",\"√\"],[\"Square\",\"□\"],[\"SquareIntersection\",\"⊓\"],[\"SquareSubset\",\"⊏\"],[\"SquareSubsetEqual\",\"⊑\"],[\"SquareSuperset\",\"⊐\"],[\"SquareSupersetEqual\",\"⊒\"],[\"SquareUnion\",\"⊔\"],[\"Sscr\",\"𝒮\"],[\"Star\",\"⋆\"],[\"Sub\",\"⋐\"],[\"Subset\",\"⋐\"],[\"SubsetEqual\",\"⊆\"],[\"Succeeds\",\"≻\"],[\"SucceedsEqual\",\"⪰\"],[\"SucceedsSlantEqual\",\"≽\"],[\"SucceedsTilde\",\"≿\"],[\"SuchThat\",\"∋\"],[\"Sum\",\"∑\"],[\"Sup\",\"⋑\"],[\"Superset\",\"⊃\"],[\"SupersetEqual\",\"⊇\"],[\"Supset\",\"⋑\"],[\"THORN\",\"Þ\"],[\"TRADE\",\"™\"],[\"TSHcy\",\"Ћ\"],[\"TScy\",\"Ц\"],[\"Tab\",\"\\t\"],[\"Tau\",\"Τ\"],[\"Tcaron\",\"Ť\"],[\"Tcedil\",\"Ţ\"],[\"Tcy\",\"Т\"],[\"Tfr\",\"𝔗\"],[\"Therefore\",\"∴\"],[\"Theta\",\"Θ\"],[\"ThickSpace\",\" \"],[\"ThinSpace\",\" \"],[\"Tilde\",\"∼\"],[\"TildeEqual\",\"≃\"],[\"TildeFullEqual\",\"≅\"],[\"TildeTilde\",\"≈\"],[\"Topf\",\"𝕋\"],[\"TripleDot\",\"⃛\"],[\"Tscr\",\"𝒯\"],[\"Tstrok\",\"Ŧ\"],[\"Uacute\",\"Ú\"],[\"Uarr\",\"↟\"],[\"Uarrocir\",\"⥉\"],[\"Ubrcy\",\"Ў\"],[\"Ubreve\",\"Ŭ\"],[\"Ucirc\",\"Û\"],[\"Ucy\",\"У\"],[\"Udblac\",\"Ű\"],[\"Ufr\",\"𝔘\"],[\"Ugrave\",\"Ù\"],[\"Umacr\",\"Ū\"],[\"UnderBar\",\"_\"],[\"UnderBrace\",\"⏟\"],[\"UnderBracket\",\"⎵\"],[\"UnderParenthesis\",\"⏝\"],[\"Union\",\"⋃\"],[\"UnionPlus\",\"⊎\"],[\"Uogon\",\"Ų\"],[\"Uopf\",\"𝕌\"],[\"UpArrow\",\"↑\"],[\"UpArrowBar\",\"⤒\"],[\"UpArrowDownArrow\",\"⇅\"],[\"UpDownArrow\",\"↕\"],[\"UpEquilibrium\",\"⥮\"],[\"UpTee\",\"⊥\"],[\"UpTeeArrow\",\"↥\"],[\"Uparrow\",\"⇑\"],[\"Updownarrow\",\"⇕\"],[\"UpperLeftArrow\",\"↖\"],[\"UpperRightArrow\",\"↗\"],[\"Upsi\",\"ϒ\"],[\"Upsilon\",\"Υ\"],[\"Uring\",\"Ů\"],[\"Uscr\",\"𝒰\"],[\"Utilde\",\"Ũ\"],[\"Uuml\",\"Ü\"],[\"VDash\",\"⊫\"],[\"Vbar\",\"⫫\"],[\"Vcy\",\"В\"],[\"Vdash\",\"⊩\"],[\"Vdashl\",\"⫦\"],[\"Vee\",\"⋁\"],[\"Verbar\",\"‖\"],[\"Vert\",\"‖\"],[\"VerticalBar\",\"∣\"],[\"VerticalLine\",\"|\"],[\"VerticalSeparator\",\"❘\"],[\"VerticalTilde\",\"≀\"],[\"VeryThinSpace\",\" \"],[\"Vfr\",\"𝔙\"],[\"Vopf\",\"𝕍\"],[\"Vscr\",\"𝒱\"],[\"Vvdash\",\"⊪\"],[\"Wcirc\",\"Ŵ\"],[\"Wedge\",\"⋀\"],[\"Wfr\",\"𝔚\"],[\"Wopf\",\"𝕎\"],[\"Wscr\",\"𝒲\"],[\"Xfr\",\"𝔛\"],[\"Xi\",\"Ξ\"],[\"Xopf\",\"𝕏\"],[\"Xscr\",\"𝒳\"],[\"YAcy\",\"Я\"],[\"YIcy\",\"Ї\"],[\"YUcy\",\"Ю\"],[\"Yacute\",\"Ý\"],[\"Ycirc\",\"Ŷ\"],[\"Ycy\",\"Ы\"],[\"Yfr\",\"𝔜\"],[\"Yopf\",\"𝕐\"],[\"Yscr\",\"𝒴\"],[\"Yuml\",\"Ÿ\"],[\"ZHcy\",\"Ж\"],[\"Zacute\",\"Ź\"],[\"Zcaron\",\"Ž\"],[\"Zcy\",\"З\"],[\"Zdot\",\"Ż\"],[\"ZeroWidthSpace\",\"\"],[\"Zeta\",\"Ζ\"],[\"Zfr\",\"ℨ\"],[\"Zopf\",\"ℤ\"],[\"Zscr\",\"𝒵\"],[\"aacute\",\"á\"],[\"abreve\",\"ă\"],[\"ac\",\"∾\"],[\"acE\",\"∾̳\"],[\"acd\",\"∿\"],[\"acirc\",\"â\"],[\"acute\",\"´\"],[\"acy\",\"а\"],[\"aelig\",\"æ\"],[\"af\",\"\"],[\"afr\",\"𝔞\"],[\"agrave\",\"à\"],[\"alefsym\",\"ℵ\"],[\"aleph\",\"ℵ\"],[\"alpha\",\"α\"],[\"amacr\",\"ā\"],[\"amalg\",\"⨿\"],[\"amp\",\"&\"],[\"and\",\"∧\"],[\"andand\",\"⩕\"],[\"andd\",\"⩜\"],[\"andslope\",\"⩘\"],[\"andv\",\"⩚\"],[\"ang\",\"∠\"],[\"ange\",\"⦤\"],[\"angle\",\"∠\"],[\"angmsd\",\"∡\"],[\"angmsdaa\",\"⦨\"],[\"angmsdab\",\"⦩\"],[\"angmsdac\",\"⦪\"],[\"angmsdad\",\"⦫\"],[\"angmsdae\",\"⦬\"],[\"angmsdaf\",\"⦭\"],[\"angmsdag\",\"⦮\"],[\"angmsdah\",\"⦯\"],[\"angrt\",\"∟\"],[\"angrtvb\",\"⊾\"],[\"angrtvbd\",\"⦝\"],[\"angsph\",\"∢\"],[\"angst\",\"Å\"],[\"angzarr\",\"⍼\"],[\"aogon\",\"ą\"],[\"aopf\",\"𝕒\"],[\"ap\",\"≈\"],[\"apE\",\"⩰\"],[\"apacir\",\"⩯\"],[\"ape\",\"≊\"],[\"apid\",\"≋\"],[\"apos\",\"'\"],[\"approx\",\"≈\"],[\"approxeq\",\"≊\"],[\"aring\",\"å\"],[\"ascr\",\"𝒶\"],[\"ast\",\"*\"],[\"asymp\",\"≈\"],[\"asympeq\",\"≍\"],[\"atilde\",\"ã\"],[\"auml\",\"ä\"],[\"awconint\",\"∳\"],[\"awint\",\"⨑\"],[\"bNot\",\"⫭\"],[\"backcong\",\"≌\"],[\"backepsilon\",\"϶\"],[\"backprime\",\"‵\"],[\"backsim\",\"∽\"],[\"backsimeq\",\"⋍\"],[\"barvee\",\"⊽\"],[\"barwed\",\"⌅\"],[\"barwedge\",\"⌅\"],[\"bbrk\",\"⎵\"],[\"bbrktbrk\",\"⎶\"],[\"bcong\",\"≌\"],[\"bcy\",\"б\"],[\"bdquo\",\"„\"],[\"becaus\",\"∵\"],[\"because\",\"∵\"],[\"bemptyv\",\"⦰\"],[\"bepsi\",\"϶\"],[\"bernou\",\"ℬ\"],[\"beta\",\"β\"],[\"beth\",\"ℶ\"],[\"between\",\"≬\"],[\"bfr\",\"𝔟\"],[\"bigcap\",\"⋂\"],[\"bigcirc\",\"◯\"],[\"bigcup\",\"⋃\"],[\"bigodot\",\"⨀\"],[\"bigoplus\",\"⨁\"],[\"bigotimes\",\"⨂\"],[\"bigsqcup\",\"⨆\"],[\"bigstar\",\"★\"],[\"bigtriangledown\",\"▽\"],[\"bigtriangleup\",\"△\"],[\"biguplus\",\"⨄\"],[\"bigvee\",\"⋁\"],[\"bigwedge\",\"⋀\"],[\"bkarow\",\"⤍\"],[\"blacklozenge\",\"⧫\"],[\"blacksquare\",\"▪\"],[\"blacktriangle\",\"▴\"],[\"blacktriangledown\",\"▾\"],[\"blacktriangleleft\",\"◂\"],[\"blacktriangleright\",\"▸\"],[\"blank\",\"␣\"],[\"blk12\",\"▒\"],[\"blk14\",\"░\"],[\"blk34\",\"▓\"],[\"block\",\"█\"],[\"bne\",\"=⃥\"],[\"bnequiv\",\"≡⃥\"],[\"bnot\",\"⌐\"],[\"bopf\",\"𝕓\"],[\"bot\",\"⊥\"],[\"bottom\",\"⊥\"],[\"bowtie\",\"⋈\"],[\"boxDL\",\"╗\"],[\"boxDR\",\"╔\"],[\"boxDl\",\"╖\"],[\"boxDr\",\"╓\"],[\"boxH\",\"═\"],[\"boxHD\",\"╦\"],[\"boxHU\",\"╩\"],[\"boxHd\",\"╤\"],[\"boxHu\",\"╧\"],[\"boxUL\",\"╝\"],[\"boxUR\",\"╚\"],[\"boxUl\",\"╜\"],[\"boxUr\",\"╙\"],[\"boxV\",\"║\"],[\"boxVH\",\"╬\"],[\"boxVL\",\"╣\"],[\"boxVR\",\"╠\"],[\"boxVh\",\"╫\"],[\"boxVl\",\"╢\"],[\"boxVr\",\"╟\"],[\"boxbox\",\"⧉\"],[\"boxdL\",\"╕\"],[\"boxdR\",\"╒\"],[\"boxdl\",\"┐\"],[\"boxdr\",\"┌\"],[\"boxh\",\"─\"],[\"boxhD\",\"╥\"],[\"boxhU\",\"╨\"],[\"boxhd\",\"┬\"],[\"boxhu\",\"┴\"],[\"boxminus\",\"⊟\"],[\"boxplus\",\"⊞\"],[\"boxtimes\",\"⊠\"],[\"boxuL\",\"╛\"],[\"boxuR\",\"╘\"],[\"boxul\",\"┘\"],[\"boxur\",\"└\"],[\"boxv\",\"│\"],[\"boxvH\",\"╪\"],[\"boxvL\",\"╡\"],[\"boxvR\",\"╞\"],[\"boxvh\",\"┼\"],[\"boxvl\",\"┤\"],[\"boxvr\",\"├\"],[\"bprime\",\"‵\"],[\"breve\",\"˘\"],[\"brvbar\",\"¦\"],[\"bscr\",\"𝒷\"],[\"bsemi\",\"⁏\"],[\"bsim\",\"∽\"],[\"bsime\",\"⋍\"],[\"bsol\",\"\\\\\"],[\"bsolb\",\"⧅\"],[\"bsolhsub\",\"⟈\"],[\"bull\",\"•\"],[\"bullet\",\"•\"],[\"bump\",\"≎\"],[\"bumpE\",\"⪮\"],[\"bumpe\",\"≏\"],[\"bumpeq\",\"≏\"],[\"cacute\",\"ć\"],[\"cap\",\"∩\"],[\"capand\",\"⩄\"],[\"capbrcup\",\"⩉\"],[\"capcap\",\"⩋\"],[\"capcup\",\"⩇\"],[\"capdot\",\"⩀\"],[\"caps\",\"∩︀\"],[\"caret\",\"⁁\"],[\"caron\",\"ˇ\"],[\"ccaps\",\"⩍\"],[\"ccaron\",\"č\"],[\"ccedil\",\"ç\"],[\"ccirc\",\"ĉ\"],[\"ccups\",\"⩌\"],[\"ccupssm\",\"⩐\"],[\"cdot\",\"ċ\"],[\"cedil\",\"¸\"],[\"cemptyv\",\"⦲\"],[\"cent\",\"¢\"],[\"centerdot\",\"·\"],[\"cfr\",\"𝔠\"],[\"chcy\",\"ч\"],[\"check\",\"✓\"],[\"checkmark\",\"✓\"],[\"chi\",\"χ\"],[\"cir\",\"○\"],[\"cirE\",\"⧃\"],[\"circ\",\"ˆ\"],[\"circeq\",\"≗\"],[\"circlearrowleft\",\"↺\"],[\"circlearrowright\",\"↻\"],[\"circledR\",\"®\"],[\"circledS\",\"Ⓢ\"],[\"circledast\",\"⊛\"],[\"circledcirc\",\"⊚\"],[\"circleddash\",\"⊝\"],[\"cire\",\"≗\"],[\"cirfnint\",\"⨐\"],[\"cirmid\",\"⫯\"],[\"cirscir\",\"⧂\"],[\"clubs\",\"♣\"],[\"clubsuit\",\"♣\"],[\"colon\",\":\"],[\"colone\",\"≔\"],[\"coloneq\",\"≔\"],[\"comma\",\",\"],[\"commat\",\"@\"],[\"comp\",\"∁\"],[\"compfn\",\"∘\"],[\"complement\",\"∁\"],[\"complexes\",\"ℂ\"],[\"cong\",\"≅\"],[\"congdot\",\"⩭\"],[\"conint\",\"∮\"],[\"copf\",\"𝕔\"],[\"coprod\",\"∐\"],[\"copy\",\"©\"],[\"copysr\",\"℗\"],[\"crarr\",\"↵\"],[\"cross\",\"✗\"],[\"cscr\",\"𝒸\"],[\"csub\",\"⫏\"],[\"csube\",\"⫑\"],[\"csup\",\"⫐\"],[\"csupe\",\"⫒\"],[\"ctdot\",\"⋯\"],[\"cudarrl\",\"⤸\"],[\"cudarrr\",\"⤵\"],[\"cuepr\",\"⋞\"],[\"cuesc\",\"⋟\"],[\"cularr\",\"↶\"],[\"cularrp\",\"⤽\"],[\"cup\",\"∪\"],[\"cupbrcap\",\"⩈\"],[\"cupcap\",\"⩆\"],[\"cupcup\",\"⩊\"],[\"cupdot\",\"⊍\"],[\"cupor\",\"⩅\"],[\"cups\",\"∪︀\"],[\"curarr\",\"↷\"],[\"curarrm\",\"⤼\"],[\"curlyeqprec\",\"⋞\"],[\"curlyeqsucc\",\"⋟\"],[\"curlyvee\",\"⋎\"],[\"curlywedge\",\"⋏\"],[\"curren\",\"¤\"],[\"curvearrowleft\",\"↶\"],[\"curvearrowright\",\"↷\"],[\"cuvee\",\"⋎\"],[\"cuwed\",\"⋏\"],[\"cwconint\",\"∲\"],[\"cwint\",\"∱\"],[\"cylcty\",\"⌭\"],[\"dArr\",\"⇓\"],[\"dHar\",\"⥥\"],[\"dagger\",\"†\"],[\"daleth\",\"ℸ\"],[\"darr\",\"↓\"],[\"dash\",\"‐\"],[\"dashv\",\"⊣\"],[\"dbkarow\",\"⤏\"],[\"dblac\",\"˝\"],[\"dcaron\",\"ď\"],[\"dcy\",\"д\"],[\"dd\",\"ⅆ\"],[\"ddagger\",\"‡\"],[\"ddarr\",\"⇊\"],[\"ddotseq\",\"⩷\"],[\"deg\",\"°\"],[\"delta\",\"δ\"],[\"demptyv\",\"⦱\"],[\"dfisht\",\"⥿\"],[\"dfr\",\"𝔡\"],[\"dharl\",\"⇃\"],[\"dharr\",\"⇂\"],[\"diam\",\"⋄\"],[\"diamond\",\"⋄\"],[\"diamondsuit\",\"♦\"],[\"diams\",\"♦\"],[\"die\",\"¨\"],[\"digamma\",\"ϝ\"],[\"disin\",\"⋲\"],[\"div\",\"÷\"],[\"divide\",\"÷\"],[\"divideontimes\",\"⋇\"],[\"divonx\",\"⋇\"],[\"djcy\",\"ђ\"],[\"dlcorn\",\"⌞\"],[\"dlcrop\",\"⌍\"],[\"dollar\",\"$\"],[\"dopf\",\"𝕕\"],[\"dot\",\"˙\"],[\"doteq\",\"≐\"],[\"doteqdot\",\"≑\"],[\"dotminus\",\"∸\"],[\"dotplus\",\"∔\"],[\"dotsquare\",\"⊡\"],[\"doublebarwedge\",\"⌆\"],[\"downarrow\",\"↓\"],[\"downdownarrows\",\"⇊\"],[\"downharpoonleft\",\"⇃\"],[\"downharpoonright\",\"⇂\"],[\"drbkarow\",\"⤐\"],[\"drcorn\",\"⌟\"],[\"drcrop\",\"⌌\"],[\"dscr\",\"𝒹\"],[\"dscy\",\"ѕ\"],[\"dsol\",\"⧶\"],[\"dstrok\",\"đ\"],[\"dtdot\",\"⋱\"],[\"dtri\",\"▿\"],[\"dtrif\",\"▾\"],[\"duarr\",\"⇵\"],[\"duhar\",\"⥯\"],[\"dwangle\",\"⦦\"],[\"dzcy\",\"џ\"],[\"dzigrarr\",\"⟿\"],[\"eDDot\",\"⩷\"],[\"eDot\",\"≑\"],[\"eacute\",\"é\"],[\"easter\",\"⩮\"],[\"ecaron\",\"ě\"],[\"ecir\",\"≖\"],[\"ecirc\",\"ê\"],[\"ecolon\",\"≕\"],[\"ecy\",\"э\"],[\"edot\",\"ė\"],[\"ee\",\"ⅇ\"],[\"efDot\",\"≒\"],[\"efr\",\"𝔢\"],[\"eg\",\"⪚\"],[\"egrave\",\"è\"],[\"egs\",\"⪖\"],[\"egsdot\",\"⪘\"],[\"el\",\"⪙\"],[\"elinters\",\"⏧\"],[\"ell\",\"ℓ\"],[\"els\",\"⪕\"],[\"elsdot\",\"⪗\"],[\"emacr\",\"ē\"],[\"empty\",\"∅\"],[\"emptyset\",\"∅\"],[\"emptyv\",\"∅\"],[\"emsp\",\" \"],[\"emsp13\",\" \"],[\"emsp14\",\" \"],[\"eng\",\"ŋ\"],[\"ensp\",\" \"],[\"eogon\",\"ę\"],[\"eopf\",\"𝕖\"],[\"epar\",\"⋕\"],[\"eparsl\",\"⧣\"],[\"eplus\",\"⩱\"],[\"epsi\",\"ε\"],[\"epsilon\",\"ε\"],[\"epsiv\",\"ϵ\"],[\"eqcirc\",\"≖\"],[\"eqcolon\",\"≕\"],[\"eqsim\",\"≂\"],[\"eqslantgtr\",\"⪖\"],[\"eqslantless\",\"⪕\"],[\"equals\",\"=\"],[\"equest\",\"≟\"],[\"equiv\",\"≡\"],[\"equivDD\",\"⩸\"],[\"eqvparsl\",\"⧥\"],[\"erDot\",\"≓\"],[\"erarr\",\"⥱\"],[\"escr\",\"ℯ\"],[\"esdot\",\"≐\"],[\"esim\",\"≂\"],[\"eta\",\"η\"],[\"eth\",\"ð\"],[\"euml\",\"ë\"],[\"euro\",\"€\"],[\"excl\",\"!\"],[\"exist\",\"∃\"],[\"expectation\",\"ℰ\"],[\"exponentiale\",\"ⅇ\"],[\"fallingdotseq\",\"≒\"],[\"fcy\",\"ф\"],[\"female\",\"♀\"],[\"ffilig\",\"ffi\"],[\"fflig\",\"ff\"],[\"ffllig\",\"ffl\"],[\"ffr\",\"𝔣\"],[\"filig\",\"fi\"],[\"fjlig\",\"fj\"],[\"flat\",\"♭\"],[\"fllig\",\"fl\"],[\"fltns\",\"▱\"],[\"fnof\",\"ƒ\"],[\"fopf\",\"𝕗\"],[\"forall\",\"∀\"],[\"fork\",\"⋔\"],[\"forkv\",\"⫙\"],[\"fpartint\",\"⨍\"],[\"frac12\",\"½\"],[\"frac13\",\"⅓\"],[\"frac14\",\"¼\"],[\"frac15\",\"⅕\"],[\"frac16\",\"⅙\"],[\"frac18\",\"⅛\"],[\"frac23\",\"⅔\"],[\"frac25\",\"⅖\"],[\"frac34\",\"¾\"],[\"frac35\",\"⅗\"],[\"frac38\",\"⅜\"],[\"frac45\",\"⅘\"],[\"frac56\",\"⅚\"],[\"frac58\",\"⅝\"],[\"frac78\",\"⅞\"],[\"frasl\",\"⁄\"],[\"frown\",\"⌢\"],[\"fscr\",\"𝒻\"],[\"gE\",\"≧\"],[\"gEl\",\"⪌\"],[\"gacute\",\"ǵ\"],[\"gamma\",\"γ\"],[\"gammad\",\"ϝ\"],[\"gap\",\"⪆\"],[\"gbreve\",\"ğ\"],[\"gcirc\",\"ĝ\"],[\"gcy\",\"г\"],[\"gdot\",\"ġ\"],[\"ge\",\"≥\"],[\"gel\",\"⋛\"],[\"geq\",\"≥\"],[\"geqq\",\"≧\"],[\"geqslant\",\"⩾\"],[\"ges\",\"⩾\"],[\"gescc\",\"⪩\"],[\"gesdot\",\"⪀\"],[\"gesdoto\",\"⪂\"],[\"gesdotol\",\"⪄\"],[\"gesl\",\"⋛︀\"],[\"gesles\",\"⪔\"],[\"gfr\",\"𝔤\"],[\"gg\",\"≫\"],[\"ggg\",\"⋙\"],[\"gimel\",\"ℷ\"],[\"gjcy\",\"ѓ\"],[\"gl\",\"≷\"],[\"glE\",\"⪒\"],[\"gla\",\"⪥\"],[\"glj\",\"⪤\"],[\"gnE\",\"≩\"],[\"gnap\",\"⪊\"],[\"gnapprox\",\"⪊\"],[\"gne\",\"⪈\"],[\"gneq\",\"⪈\"],[\"gneqq\",\"≩\"],[\"gnsim\",\"⋧\"],[\"gopf\",\"𝕘\"],[\"grave\",\"`\"],[\"gscr\",\"ℊ\"],[\"gsim\",\"≳\"],[\"gsime\",\"⪎\"],[\"gsiml\",\"⪐\"],[\"gt\",\">\"],[\"gtcc\",\"⪧\"],[\"gtcir\",\"⩺\"],[\"gtdot\",\"⋗\"],[\"gtlPar\",\"⦕\"],[\"gtquest\",\"⩼\"],[\"gtrapprox\",\"⪆\"],[\"gtrarr\",\"⥸\"],[\"gtrdot\",\"⋗\"],[\"gtreqless\",\"⋛\"],[\"gtreqqless\",\"⪌\"],[\"gtrless\",\"≷\"],[\"gtrsim\",\"≳\"],[\"gvertneqq\",\"≩︀\"],[\"gvnE\",\"≩︀\"],[\"hArr\",\"⇔\"],[\"hairsp\",\" \"],[\"half\",\"½\"],[\"hamilt\",\"ℋ\"],[\"hardcy\",\"ъ\"],[\"harr\",\"↔\"],[\"harrcir\",\"⥈\"],[\"harrw\",\"↭\"],[\"hbar\",\"ℏ\"],[\"hcirc\",\"ĥ\"],[\"hearts\",\"♥\"],[\"heartsuit\",\"♥\"],[\"hellip\",\"…\"],[\"hercon\",\"⊹\"],[\"hfr\",\"𝔥\"],[\"hksearow\",\"⤥\"],[\"hkswarow\",\"⤦\"],[\"hoarr\",\"⇿\"],[\"homtht\",\"∻\"],[\"hookleftarrow\",\"↩\"],[\"hookrightarrow\",\"↪\"],[\"hopf\",\"𝕙\"],[\"horbar\",\"―\"],[\"hscr\",\"𝒽\"],[\"hslash\",\"ℏ\"],[\"hstrok\",\"ħ\"],[\"hybull\",\"⁃\"],[\"hyphen\",\"‐\"],[\"iacute\",\"í\"],[\"ic\",\"\"],[\"icirc\",\"î\"],[\"icy\",\"и\"],[\"iecy\",\"е\"],[\"iexcl\",\"¡\"],[\"iff\",\"⇔\"],[\"ifr\",\"𝔦\"],[\"igrave\",\"ì\"],[\"ii\",\"ⅈ\"],[\"iiiint\",\"⨌\"],[\"iiint\",\"∭\"],[\"iinfin\",\"⧜\"],[\"iiota\",\"℩\"],[\"ijlig\",\"ij\"],[\"imacr\",\"ī\"],[\"image\",\"ℑ\"],[\"imagline\",\"ℐ\"],[\"imagpart\",\"ℑ\"],[\"imath\",\"ı\"],[\"imof\",\"⊷\"],[\"imped\",\"Ƶ\"],[\"in\",\"∈\"],[\"incare\",\"℅\"],[\"infin\",\"∞\"],[\"infintie\",\"⧝\"],[\"inodot\",\"ı\"],[\"int\",\"∫\"],[\"intcal\",\"⊺\"],[\"integers\",\"ℤ\"],[\"intercal\",\"⊺\"],[\"intlarhk\",\"⨗\"],[\"intprod\",\"⨼\"],[\"iocy\",\"ё\"],[\"iogon\",\"į\"],[\"iopf\",\"𝕚\"],[\"iota\",\"ι\"],[\"iprod\",\"⨼\"],[\"iquest\",\"¿\"],[\"iscr\",\"𝒾\"],[\"isin\",\"∈\"],[\"isinE\",\"⋹\"],[\"isindot\",\"⋵\"],[\"isins\",\"⋴\"],[\"isinsv\",\"⋳\"],[\"isinv\",\"∈\"],[\"it\",\"\"],[\"itilde\",\"ĩ\"],[\"iukcy\",\"і\"],[\"iuml\",\"ï\"],[\"jcirc\",\"ĵ\"],[\"jcy\",\"й\"],[\"jfr\",\"𝔧\"],[\"jmath\",\"ȷ\"],[\"jopf\",\"𝕛\"],[\"jscr\",\"𝒿\"],[\"jsercy\",\"ј\"],[\"jukcy\",\"є\"],[\"kappa\",\"κ\"],[\"kappav\",\"ϰ\"],[\"kcedil\",\"ķ\"],[\"kcy\",\"к\"],[\"kfr\",\"𝔨\"],[\"kgreen\",\"ĸ\"],[\"khcy\",\"х\"],[\"kjcy\",\"ќ\"],[\"kopf\",\"𝕜\"],[\"kscr\",\"𝓀\"],[\"lAarr\",\"⇚\"],[\"lArr\",\"⇐\"],[\"lAtail\",\"⤛\"],[\"lBarr\",\"⤎\"],[\"lE\",\"≦\"],[\"lEg\",\"⪋\"],[\"lHar\",\"⥢\"],[\"lacute\",\"ĺ\"],[\"laemptyv\",\"⦴\"],[\"lagran\",\"ℒ\"],[\"lambda\",\"λ\"],[\"lang\",\"⟨\"],[\"langd\",\"⦑\"],[\"langle\",\"⟨\"],[\"lap\",\"⪅\"],[\"laquo\",\"«\"],[\"larr\",\"←\"],[\"larrb\",\"⇤\"],[\"larrbfs\",\"⤟\"],[\"larrfs\",\"⤝\"],[\"larrhk\",\"↩\"],[\"larrlp\",\"↫\"],[\"larrpl\",\"⤹\"],[\"larrsim\",\"⥳\"],[\"larrtl\",\"↢\"],[\"lat\",\"⪫\"],[\"latail\",\"⤙\"],[\"late\",\"⪭\"],[\"lates\",\"⪭︀\"],[\"lbarr\",\"⤌\"],[\"lbbrk\",\"❲\"],[\"lbrace\",\"{\"],[\"lbrack\",\"[\"],[\"lbrke\",\"⦋\"],[\"lbrksld\",\"⦏\"],[\"lbrkslu\",\"⦍\"],[\"lcaron\",\"ľ\"],[\"lcedil\",\"ļ\"],[\"lceil\",\"⌈\"],[\"lcub\",\"{\"],[\"lcy\",\"л\"],[\"ldca\",\"⤶\"],[\"ldquo\",\"“\"],[\"ldquor\",\"„\"],[\"ldrdhar\",\"⥧\"],[\"ldrushar\",\"⥋\"],[\"ldsh\",\"↲\"],[\"le\",\"≤\"],[\"leftarrow\",\"←\"],[\"leftarrowtail\",\"↢\"],[\"leftharpoondown\",\"↽\"],[\"leftharpoonup\",\"↼\"],[\"leftleftarrows\",\"⇇\"],[\"leftrightarrow\",\"↔\"],[\"leftrightarrows\",\"⇆\"],[\"leftrightharpoons\",\"⇋\"],[\"leftrightsquigarrow\",\"↭\"],[\"leftthreetimes\",\"⋋\"],[\"leg\",\"⋚\"],[\"leq\",\"≤\"],[\"leqq\",\"≦\"],[\"leqslant\",\"⩽\"],[\"les\",\"⩽\"],[\"lescc\",\"⪨\"],[\"lesdot\",\"⩿\"],[\"lesdoto\",\"⪁\"],[\"lesdotor\",\"⪃\"],[\"lesg\",\"⋚︀\"],[\"lesges\",\"⪓\"],[\"lessapprox\",\"⪅\"],[\"lessdot\",\"⋖\"],[\"lesseqgtr\",\"⋚\"],[\"lesseqqgtr\",\"⪋\"],[\"lessgtr\",\"≶\"],[\"lesssim\",\"≲\"],[\"lfisht\",\"⥼\"],[\"lfloor\",\"⌊\"],[\"lfr\",\"𝔩\"],[\"lg\",\"≶\"],[\"lgE\",\"⪑\"],[\"lhard\",\"↽\"],[\"lharu\",\"↼\"],[\"lharul\",\"⥪\"],[\"lhblk\",\"▄\"],[\"ljcy\",\"љ\"],[\"ll\",\"≪\"],[\"llarr\",\"⇇\"],[\"llcorner\",\"⌞\"],[\"llhard\",\"⥫\"],[\"lltri\",\"◺\"],[\"lmidot\",\"ŀ\"],[\"lmoust\",\"⎰\"],[\"lmoustache\",\"⎰\"],[\"lnE\",\"≨\"],[\"lnap\",\"⪉\"],[\"lnapprox\",\"⪉\"],[\"lne\",\"⪇\"],[\"lneq\",\"⪇\"],[\"lneqq\",\"≨\"],[\"lnsim\",\"⋦\"],[\"loang\",\"⟬\"],[\"loarr\",\"⇽\"],[\"lobrk\",\"⟦\"],[\"longleftarrow\",\"⟵\"],[\"longleftrightarrow\",\"⟷\"],[\"longmapsto\",\"⟼\"],[\"longrightarrow\",\"⟶\"],[\"looparrowleft\",\"↫\"],[\"looparrowright\",\"↬\"],[\"lopar\",\"⦅\"],[\"lopf\",\"𝕝\"],[\"loplus\",\"⨭\"],[\"lotimes\",\"⨴\"],[\"lowast\",\"∗\"],[\"lowbar\",\"_\"],[\"loz\",\"◊\"],[\"lozenge\",\"◊\"],[\"lozf\",\"⧫\"],[\"lpar\",\"(\"],[\"lparlt\",\"⦓\"],[\"lrarr\",\"⇆\"],[\"lrcorner\",\"⌟\"],[\"lrhar\",\"⇋\"],[\"lrhard\",\"⥭\"],[\"lrm\",\"\"],[\"lrtri\",\"⊿\"],[\"lsaquo\",\"‹\"],[\"lscr\",\"𝓁\"],[\"lsh\",\"↰\"],[\"lsim\",\"≲\"],[\"lsime\",\"⪍\"],[\"lsimg\",\"⪏\"],[\"lsqb\",\"[\"],[\"lsquo\",\"‘\"],[\"lsquor\",\"‚\"],[\"lstrok\",\"ł\"],[\"lt\",\"<\"],[\"ltcc\",\"⪦\"],[\"ltcir\",\"⩹\"],[\"ltdot\",\"⋖\"],[\"lthree\",\"⋋\"],[\"ltimes\",\"⋉\"],[\"ltlarr\",\"⥶\"],[\"ltquest\",\"⩻\"],[\"ltrPar\",\"⦖\"],[\"ltri\",\"◃\"],[\"ltrie\",\"⊴\"],[\"ltrif\",\"◂\"],[\"lurdshar\",\"⥊\"],[\"luruhar\",\"⥦\"],[\"lvertneqq\",\"≨︀\"],[\"lvnE\",\"≨︀\"],[\"mDDot\",\"∺\"],[\"macr\",\"¯\"],[\"male\",\"♂\"],[\"malt\",\"✠\"],[\"maltese\",\"✠\"],[\"map\",\"↦\"],[\"mapsto\",\"↦\"],[\"mapstodown\",\"↧\"],[\"mapstoleft\",\"↤\"],[\"mapstoup\",\"↥\"],[\"marker\",\"▮\"],[\"mcomma\",\"⨩\"],[\"mcy\",\"м\"],[\"mdash\",\"—\"],[\"measuredangle\",\"∡\"],[\"mfr\",\"𝔪\"],[\"mho\",\"℧\"],[\"micro\",\"µ\"],[\"mid\",\"∣\"],[\"midast\",\"*\"],[\"midcir\",\"⫰\"],[\"middot\",\"·\"],[\"minus\",\"−\"],[\"minusb\",\"⊟\"],[\"minusd\",\"∸\"],[\"minusdu\",\"⨪\"],[\"mlcp\",\"⫛\"],[\"mldr\",\"…\"],[\"mnplus\",\"∓\"],[\"models\",\"⊧\"],[\"mopf\",\"𝕞\"],[\"mp\",\"∓\"],[\"mscr\",\"𝓂\"],[\"mstpos\",\"∾\"],[\"mu\",\"μ\"],[\"multimap\",\"⊸\"],[\"mumap\",\"⊸\"],[\"nGg\",\"⋙̸\"],[\"nGt\",\"≫⃒\"],[\"nGtv\",\"≫̸\"],[\"nLeftarrow\",\"⇍\"],[\"nLeftrightarrow\",\"⇎\"],[\"nLl\",\"⋘̸\"],[\"nLt\",\"≪⃒\"],[\"nLtv\",\"≪̸\"],[\"nRightarrow\",\"⇏\"],[\"nVDash\",\"⊯\"],[\"nVdash\",\"⊮\"],[\"nabla\",\"∇\"],[\"nacute\",\"ń\"],[\"nang\",\"∠⃒\"],[\"nap\",\"≉\"],[\"napE\",\"⩰̸\"],[\"napid\",\"≋̸\"],[\"napos\",\"ʼn\"],[\"napprox\",\"≉\"],[\"natur\",\"♮\"],[\"natural\",\"♮\"],[\"naturals\",\"ℕ\"],[\"nbsp\",\"\xA0\"],[\"nbump\",\"≎̸\"],[\"nbumpe\",\"≏̸\"],[\"ncap\",\"⩃\"],[\"ncaron\",\"ň\"],[\"ncedil\",\"ņ\"],[\"ncong\",\"≇\"],[\"ncongdot\",\"⩭̸\"],[\"ncup\",\"⩂\"],[\"ncy\",\"н\"],[\"ndash\",\"–\"],[\"ne\",\"≠\"],[\"neArr\",\"⇗\"],[\"nearhk\",\"⤤\"],[\"nearr\",\"↗\"],[\"nearrow\",\"↗\"],[\"nedot\",\"≐̸\"],[\"nequiv\",\"≢\"],[\"nesear\",\"⤨\"],[\"nesim\",\"≂̸\"],[\"nexist\",\"∄\"],[\"nexists\",\"∄\"],[\"nfr\",\"𝔫\"],[\"ngE\",\"≧̸\"],[\"nge\",\"≱\"],[\"ngeq\",\"≱\"],[\"ngeqq\",\"≧̸\"],[\"ngeqslant\",\"⩾̸\"],[\"nges\",\"⩾̸\"],[\"ngsim\",\"≵\"],[\"ngt\",\"≯\"],[\"ngtr\",\"≯\"],[\"nhArr\",\"⇎\"],[\"nharr\",\"↮\"],[\"nhpar\",\"⫲\"],[\"ni\",\"∋\"],[\"nis\",\"⋼\"],[\"nisd\",\"⋺\"],[\"niv\",\"∋\"],[\"njcy\",\"њ\"],[\"nlArr\",\"⇍\"],[\"nlE\",\"≦̸\"],[\"nlarr\",\"↚\"],[\"nldr\",\"‥\"],[\"nle\",\"≰\"],[\"nleftarrow\",\"↚\"],[\"nleftrightarrow\",\"↮\"],[\"nleq\",\"≰\"],[\"nleqq\",\"≦̸\"],[\"nleqslant\",\"⩽̸\"],[\"nles\",\"⩽̸\"],[\"nless\",\"≮\"],[\"nlsim\",\"≴\"],[\"nlt\",\"≮\"],[\"nltri\",\"⋪\"],[\"nltrie\",\"⋬\"],[\"nmid\",\"∤\"],[\"nopf\",\"𝕟\"],[\"not\",\"¬\"],[\"notin\",\"∉\"],[\"notinE\",\"⋹̸\"],[\"notindot\",\"⋵̸\"],[\"notinva\",\"∉\"],[\"notinvb\",\"⋷\"],[\"notinvc\",\"⋶\"],[\"notni\",\"∌\"],[\"notniva\",\"∌\"],[\"notnivb\",\"⋾\"],[\"notnivc\",\"⋽\"],[\"npar\",\"∦\"],[\"nparallel\",\"∦\"],[\"nparsl\",\"⫽⃥\"],[\"npart\",\"∂̸\"],[\"npolint\",\"⨔\"],[\"npr\",\"⊀\"],[\"nprcue\",\"⋠\"],[\"npre\",\"⪯̸\"],[\"nprec\",\"⊀\"],[\"npreceq\",\"⪯̸\"],[\"nrArr\",\"⇏\"],[\"nrarr\",\"↛\"],[\"nrarrc\",\"⤳̸\"],[\"nrarrw\",\"↝̸\"],[\"nrightarrow\",\"↛\"],[\"nrtri\",\"⋫\"],[\"nrtrie\",\"⋭\"],[\"nsc\",\"⊁\"],[\"nsccue\",\"⋡\"],[\"nsce\",\"⪰̸\"],[\"nscr\",\"𝓃\"],[\"nshortmid\",\"∤\"],[\"nshortparallel\",\"∦\"],[\"nsim\",\"≁\"],[\"nsime\",\"≄\"],[\"nsimeq\",\"≄\"],[\"nsmid\",\"∤\"],[\"nspar\",\"∦\"],[\"nsqsube\",\"⋢\"],[\"nsqsupe\",\"⋣\"],[\"nsub\",\"⊄\"],[\"nsubE\",\"⫅̸\"],[\"nsube\",\"⊈\"],[\"nsubset\",\"⊂⃒\"],[\"nsubseteq\",\"⊈\"],[\"nsubseteqq\",\"⫅̸\"],[\"nsucc\",\"⊁\"],[\"nsucceq\",\"⪰̸\"],[\"nsup\",\"⊅\"],[\"nsupE\",\"⫆̸\"],[\"nsupe\",\"⊉\"],[\"nsupset\",\"⊃⃒\"],[\"nsupseteq\",\"⊉\"],[\"nsupseteqq\",\"⫆̸\"],[\"ntgl\",\"≹\"],[\"ntilde\",\"ñ\"],[\"ntlg\",\"≸\"],[\"ntriangleleft\",\"⋪\"],[\"ntrianglelefteq\",\"⋬\"],[\"ntriangleright\",\"⋫\"],[\"ntrianglerighteq\",\"⋭\"],[\"nu\",\"ν\"],[\"num\",\"#\"],[\"numero\",\"№\"],[\"numsp\",\" \"],[\"nvDash\",\"⊭\"],[\"nvHarr\",\"⤄\"],[\"nvap\",\"≍⃒\"],[\"nvdash\",\"⊬\"],[\"nvge\",\"≥⃒\"],[\"nvgt\",\">⃒\"],[\"nvinfin\",\"⧞\"],[\"nvlArr\",\"⤂\"],[\"nvle\",\"≤⃒\"],[\"nvlt\",\"<⃒\"],[\"nvltrie\",\"⊴⃒\"],[\"nvrArr\",\"⤃\"],[\"nvrtrie\",\"⊵⃒\"],[\"nvsim\",\"∼⃒\"],[\"nwArr\",\"⇖\"],[\"nwarhk\",\"⤣\"],[\"nwarr\",\"↖\"],[\"nwarrow\",\"↖\"],[\"nwnear\",\"⤧\"],[\"oS\",\"Ⓢ\"],[\"oacute\",\"ó\"],[\"oast\",\"⊛\"],[\"ocir\",\"⊚\"],[\"ocirc\",\"ô\"],[\"ocy\",\"о\"],[\"odash\",\"⊝\"],[\"odblac\",\"ő\"],[\"odiv\",\"⨸\"],[\"odot\",\"⊙\"],[\"odsold\",\"⦼\"],[\"oelig\",\"œ\"],[\"ofcir\",\"⦿\"],[\"ofr\",\"𝔬\"],[\"ogon\",\"˛\"],[\"ograve\",\"ò\"],[\"ogt\",\"⧁\"],[\"ohbar\",\"⦵\"],[\"ohm\",\"Ω\"],[\"oint\",\"∮\"],[\"olarr\",\"↺\"],[\"olcir\",\"⦾\"],[\"olcross\",\"⦻\"],[\"oline\",\"‾\"],[\"olt\",\"⧀\"],[\"omacr\",\"ō\"],[\"omega\",\"ω\"],[\"omicron\",\"ο\"],[\"omid\",\"⦶\"],[\"ominus\",\"⊖\"],[\"oopf\",\"𝕠\"],[\"opar\",\"⦷\"],[\"operp\",\"⦹\"],[\"oplus\",\"⊕\"],[\"or\",\"∨\"],[\"orarr\",\"↻\"],[\"ord\",\"⩝\"],[\"order\",\"ℴ\"],[\"orderof\",\"ℴ\"],[\"ordf\",\"ª\"],[\"ordm\",\"º\"],[\"origof\",\"⊶\"],[\"oror\",\"⩖\"],[\"orslope\",\"⩗\"],[\"orv\",\"⩛\"],[\"oscr\",\"ℴ\"],[\"oslash\",\"ø\"],[\"osol\",\"⊘\"],[\"otilde\",\"õ\"],[\"otimes\",\"⊗\"],[\"otimesas\",\"⨶\"],[\"ouml\",\"ö\"],[\"ovbar\",\"⌽\"],[\"par\",\"∥\"],[\"para\",\"¶\"],[\"parallel\",\"∥\"],[\"parsim\",\"⫳\"],[\"parsl\",\"⫽\"],[\"part\",\"∂\"],[\"pcy\",\"п\"],[\"percnt\",\"%\"],[\"period\",\".\"],[\"permil\",\"‰\"],[\"perp\",\"⊥\"],[\"pertenk\",\"‱\"],[\"pfr\",\"𝔭\"],[\"phi\",\"φ\"],[\"phiv\",\"ϕ\"],[\"phmmat\",\"ℳ\"],[\"phone\",\"☎\"],[\"pi\",\"π\"],[\"pitchfork\",\"⋔\"],[\"piv\",\"ϖ\"],[\"planck\",\"ℏ\"],[\"planckh\",\"ℎ\"],[\"plankv\",\"ℏ\"],[\"plus\",\"+\"],[\"plusacir\",\"⨣\"],[\"plusb\",\"⊞\"],[\"pluscir\",\"⨢\"],[\"plusdo\",\"∔\"],[\"plusdu\",\"⨥\"],[\"pluse\",\"⩲\"],[\"plusmn\",\"±\"],[\"plussim\",\"⨦\"],[\"plustwo\",\"⨧\"],[\"pm\",\"±\"],[\"pointint\",\"⨕\"],[\"popf\",\"𝕡\"],[\"pound\",\"£\"],[\"pr\",\"≺\"],[\"prE\",\"⪳\"],[\"prap\",\"⪷\"],[\"prcue\",\"≼\"],[\"pre\",\"⪯\"],[\"prec\",\"≺\"],[\"precapprox\",\"⪷\"],[\"preccurlyeq\",\"≼\"],[\"preceq\",\"⪯\"],[\"precnapprox\",\"⪹\"],[\"precneqq\",\"⪵\"],[\"precnsim\",\"⋨\"],[\"precsim\",\"≾\"],[\"prime\",\"′\"],[\"primes\",\"ℙ\"],[\"prnE\",\"⪵\"],[\"prnap\",\"⪹\"],[\"prnsim\",\"⋨\"],[\"prod\",\"∏\"],[\"profalar\",\"⌮\"],[\"profline\",\"⌒\"],[\"profsurf\",\"⌓\"],[\"prop\",\"∝\"],[\"propto\",\"∝\"],[\"prsim\",\"≾\"],[\"prurel\",\"⊰\"],[\"pscr\",\"𝓅\"],[\"psi\",\"ψ\"],[\"puncsp\",\" \"],[\"qfr\",\"𝔮\"],[\"qint\",\"⨌\"],[\"qopf\",\"𝕢\"],[\"qprime\",\"⁗\"],[\"qscr\",\"𝓆\"],[\"quaternions\",\"ℍ\"],[\"quatint\",\"⨖\"],[\"quest\",\"?\"],[\"questeq\",\"≟\"],[\"quot\",\"\\\"\"],[\"rAarr\",\"⇛\"],[\"rArr\",\"⇒\"],[\"rAtail\",\"⤜\"],[\"rBarr\",\"⤏\"],[\"rHar\",\"⥤\"],[\"race\",\"∽̱\"],[\"racute\",\"ŕ\"],[\"radic\",\"√\"],[\"raemptyv\",\"⦳\"],[\"rang\",\"⟩\"],[\"rangd\",\"⦒\"],[\"range\",\"⦥\"],[\"rangle\",\"⟩\"],[\"raquo\",\"»\"],[\"rarr\",\"→\"],[\"rarrap\",\"⥵\"],[\"rarrb\",\"⇥\"],[\"rarrbfs\",\"⤠\"],[\"rarrc\",\"⤳\"],[\"rarrfs\",\"⤞\"],[\"rarrhk\",\"↪\"],[\"rarrlp\",\"↬\"],[\"rarrpl\",\"⥅\"],[\"rarrsim\",\"⥴\"],[\"rarrtl\",\"↣\"],[\"rarrw\",\"↝\"],[\"ratail\",\"⤚\"],[\"ratio\",\"∶\"],[\"rationals\",\"ℚ\"],[\"rbarr\",\"⤍\"],[\"rbbrk\",\"❳\"],[\"rbrace\",\"}\"],[\"rbrack\",\"]\"],[\"rbrke\",\"⦌\"],[\"rbrksld\",\"⦎\"],[\"rbrkslu\",\"⦐\"],[\"rcaron\",\"ř\"],[\"rcedil\",\"ŗ\"],[\"rceil\",\"⌉\"],[\"rcub\",\"}\"],[\"rcy\",\"р\"],[\"rdca\",\"⤷\"],[\"rdldhar\",\"⥩\"],[\"rdquo\",\"”\"],[\"rdquor\",\"”\"],[\"rdsh\",\"↳\"],[\"real\",\"ℜ\"],[\"realine\",\"ℛ\"],[\"realpart\",\"ℜ\"],[\"reals\",\"ℝ\"],[\"rect\",\"▭\"],[\"reg\",\"®\"],[\"rfisht\",\"⥽\"],[\"rfloor\",\"⌋\"],[\"rfr\",\"𝔯\"],[\"rhard\",\"⇁\"],[\"rharu\",\"⇀\"],[\"rharul\",\"⥬\"],[\"rho\",\"ρ\"],[\"rhov\",\"ϱ\"],[\"rightarrow\",\"→\"],[\"rightarrowtail\",\"↣\"],[\"rightharpoondown\",\"⇁\"],[\"rightharpoonup\",\"⇀\"],[\"rightleftarrows\",\"⇄\"],[\"rightleftharpoons\",\"⇌\"],[\"rightrightarrows\",\"⇉\"],[\"rightsquigarrow\",\"↝\"],[\"rightthreetimes\",\"⋌\"],[\"ring\",\"˚\"],[\"risingdotseq\",\"≓\"],[\"rlarr\",\"⇄\"],[\"rlhar\",\"⇌\"],[\"rlm\",\"\"],[\"rmoust\",\"⎱\"],[\"rmoustache\",\"⎱\"],[\"rnmid\",\"⫮\"],[\"roang\",\"⟭\"],[\"roarr\",\"⇾\"],[\"robrk\",\"⟧\"],[\"ropar\",\"⦆\"],[\"ropf\",\"𝕣\"],[\"roplus\",\"⨮\"],[\"rotimes\",\"⨵\"],[\"rpar\",\")\"],[\"rpargt\",\"⦔\"],[\"rppolint\",\"⨒\"],[\"rrarr\",\"⇉\"],[\"rsaquo\",\"›\"],[\"rscr\",\"𝓇\"],[\"rsh\",\"↱\"],[\"rsqb\",\"]\"],[\"rsquo\",\"’\"],[\"rsquor\",\"’\"],[\"rthree\",\"⋌\"],[\"rtimes\",\"⋊\"],[\"rtri\",\"▹\"],[\"rtrie\",\"⊵\"],[\"rtrif\",\"▸\"],[\"rtriltri\",\"⧎\"],[\"ruluhar\",\"⥨\"],[\"rx\",\"℞\"],[\"sacute\",\"ś\"],[\"sbquo\",\"‚\"],[\"sc\",\"≻\"],[\"scE\",\"⪴\"],[\"scap\",\"⪸\"],[\"scaron\",\"š\"],[\"sccue\",\"≽\"],[\"sce\",\"⪰\"],[\"scedil\",\"ş\"],[\"scirc\",\"ŝ\"],[\"scnE\",\"⪶\"],[\"scnap\",\"⪺\"],[\"scnsim\",\"⋩\"],[\"scpolint\",\"⨓\"],[\"scsim\",\"≿\"],[\"scy\",\"с\"],[\"sdot\",\"⋅\"],[\"sdotb\",\"⊡\"],[\"sdote\",\"⩦\"],[\"seArr\",\"⇘\"],[\"searhk\",\"⤥\"],[\"searr\",\"↘\"],[\"searrow\",\"↘\"],[\"sect\",\"§\"],[\"semi\",\";\"],[\"seswar\",\"⤩\"],[\"setminus\",\"∖\"],[\"setmn\",\"∖\"],[\"sext\",\"✶\"],[\"sfr\",\"𝔰\"],[\"sfrown\",\"⌢\"],[\"sharp\",\"♯\"],[\"shchcy\",\"щ\"],[\"shcy\",\"ш\"],[\"shortmid\",\"∣\"],[\"shortparallel\",\"∥\"],[\"shy\",\"\"],[\"sigma\",\"σ\"],[\"sigmaf\",\"ς\"],[\"sigmav\",\"ς\"],[\"sim\",\"∼\"],[\"simdot\",\"⩪\"],[\"sime\",\"≃\"],[\"simeq\",\"≃\"],[\"simg\",\"⪞\"],[\"simgE\",\"⪠\"],[\"siml\",\"⪝\"],[\"simlE\",\"⪟\"],[\"simne\",\"≆\"],[\"simplus\",\"⨤\"],[\"simrarr\",\"⥲\"],[\"slarr\",\"←\"],[\"smallsetminus\",\"∖\"],[\"smashp\",\"⨳\"],[\"smeparsl\",\"⧤\"],[\"smid\",\"∣\"],[\"smile\",\"⌣\"],[\"smt\",\"⪪\"],[\"smte\",\"⪬\"],[\"smtes\",\"⪬︀\"],[\"softcy\",\"ь\"],[\"sol\",\"/\"],[\"solb\",\"⧄\"],[\"solbar\",\"⌿\"],[\"sopf\",\"𝕤\"],[\"spades\",\"♠\"],[\"spadesuit\",\"♠\"],[\"spar\",\"∥\"],[\"sqcap\",\"⊓\"],[\"sqcaps\",\"⊓︀\"],[\"sqcup\",\"⊔\"],[\"sqcups\",\"⊔︀\"],[\"sqsub\",\"⊏\"],[\"sqsube\",\"⊑\"],[\"sqsubset\",\"⊏\"],[\"sqsubseteq\",\"⊑\"],[\"sqsup\",\"⊐\"],[\"sqsupe\",\"⊒\"],[\"sqsupset\",\"⊐\"],[\"sqsupseteq\",\"⊒\"],[\"squ\",\"□\"],[\"square\",\"□\"],[\"squarf\",\"▪\"],[\"squf\",\"▪\"],[\"srarr\",\"→\"],[\"sscr\",\"𝓈\"],[\"ssetmn\",\"∖\"],[\"ssmile\",\"⌣\"],[\"sstarf\",\"⋆\"],[\"star\",\"☆\"],[\"starf\",\"★\"],[\"straightepsilon\",\"ϵ\"],[\"straightphi\",\"ϕ\"],[\"strns\",\"¯\"],[\"sub\",\"⊂\"],[\"subE\",\"⫅\"],[\"subdot\",\"⪽\"],[\"sube\",\"⊆\"],[\"subedot\",\"⫃\"],[\"submult\",\"⫁\"],[\"subnE\",\"⫋\"],[\"subne\",\"⊊\"],[\"subplus\",\"⪿\"],[\"subrarr\",\"⥹\"],[\"subset\",\"⊂\"],[\"subseteq\",\"⊆\"],[\"subseteqq\",\"⫅\"],[\"subsetneq\",\"⊊\"],[\"subsetneqq\",\"⫋\"],[\"subsim\",\"⫇\"],[\"subsub\",\"⫕\"],[\"subsup\",\"⫓\"],[\"succ\",\"≻\"],[\"succapprox\",\"⪸\"],[\"succcurlyeq\",\"≽\"],[\"succeq\",\"⪰\"],[\"succnapprox\",\"⪺\"],[\"succneqq\",\"⪶\"],[\"succnsim\",\"⋩\"],[\"succsim\",\"≿\"],[\"sum\",\"∑\"],[\"sung\",\"♪\"],[\"sup\",\"⊃\"],[\"sup1\",\"¹\"],[\"sup2\",\"²\"],[\"sup3\",\"³\"],[\"supE\",\"⫆\"],[\"supdot\",\"⪾\"],[\"supdsub\",\"⫘\"],[\"supe\",\"⊇\"],[\"supedot\",\"⫄\"],[\"suphsol\",\"⟉\"],[\"suphsub\",\"⫗\"],[\"suplarr\",\"⥻\"],[\"supmult\",\"⫂\"],[\"supnE\",\"⫌\"],[\"supne\",\"⊋\"],[\"supplus\",\"⫀\"],[\"supset\",\"⊃\"],[\"supseteq\",\"⊇\"],[\"supseteqq\",\"⫆\"],[\"supsetneq\",\"⊋\"],[\"supsetneqq\",\"⫌\"],[\"supsim\",\"⫈\"],[\"supsub\",\"⫔\"],[\"supsup\",\"⫖\"],[\"swArr\",\"⇙\"],[\"swarhk\",\"⤦\"],[\"swarr\",\"↙\"],[\"swarrow\",\"↙\"],[\"swnwar\",\"⤪\"],[\"szlig\",\"ß\"],[\"target\",\"⌖\"],[\"tau\",\"τ\"],[\"tbrk\",\"⎴\"],[\"tcaron\",\"ť\"],[\"tcedil\",\"ţ\"],[\"tcy\",\"т\"],[\"tdot\",\"⃛\"],[\"telrec\",\"⌕\"],[\"tfr\",\"𝔱\"],[\"there4\",\"∴\"],[\"therefore\",\"∴\"],[\"theta\",\"θ\"],[\"thetasym\",\"ϑ\"],[\"thetav\",\"ϑ\"],[\"thickapprox\",\"≈\"],[\"thicksim\",\"∼\"],[\"thinsp\",\" \"],[\"thkap\",\"≈\"],[\"thksim\",\"∼\"],[\"thorn\",\"þ\"],[\"tilde\",\"˜\"],[\"times\",\"×\"],[\"timesb\",\"⊠\"],[\"timesbar\",\"⨱\"],[\"timesd\",\"⨰\"],[\"tint\",\"∭\"],[\"toea\",\"⤨\"],[\"top\",\"⊤\"],[\"topbot\",\"⌶\"],[\"topcir\",\"⫱\"],[\"topf\",\"𝕥\"],[\"topfork\",\"⫚\"],[\"tosa\",\"⤩\"],[\"tprime\",\"‴\"],[\"trade\",\"™\"],[\"triangle\",\"▵\"],[\"triangledown\",\"▿\"],[\"triangleleft\",\"◃\"],[\"trianglelefteq\",\"⊴\"],[\"triangleq\",\"≜\"],[\"triangleright\",\"▹\"],[\"trianglerighteq\",\"⊵\"],[\"tridot\",\"◬\"],[\"trie\",\"≜\"],[\"triminus\",\"⨺\"],[\"triplus\",\"⨹\"],[\"trisb\",\"⧍\"],[\"tritime\",\"⨻\"],[\"trpezium\",\"⏢\"],[\"tscr\",\"𝓉\"],[\"tscy\",\"ц\"],[\"tshcy\",\"ћ\"],[\"tstrok\",\"ŧ\"],[\"twixt\",\"≬\"],[\"twoheadleftarrow\",\"↞\"],[\"twoheadrightarrow\",\"↠\"],[\"uArr\",\"⇑\"],[\"uHar\",\"⥣\"],[\"uacute\",\"ú\"],[\"uarr\",\"↑\"],[\"ubrcy\",\"ў\"],[\"ubreve\",\"ŭ\"],[\"ucirc\",\"û\"],[\"ucy\",\"у\"],[\"udarr\",\"⇅\"],[\"udblac\",\"ű\"],[\"udhar\",\"⥮\"],[\"ufisht\",\"⥾\"],[\"ufr\",\"𝔲\"],[\"ugrave\",\"ù\"],[\"uharl\",\"↿\"],[\"uharr\",\"↾\"],[\"uhblk\",\"▀\"],[\"ulcorn\",\"⌜\"],[\"ulcorner\",\"⌜\"],[\"ulcrop\",\"⌏\"],[\"ultri\",\"◸\"],[\"umacr\",\"ū\"],[\"uml\",\"¨\"],[\"uogon\",\"ų\"],[\"uopf\",\"𝕦\"],[\"uparrow\",\"↑\"],[\"updownarrow\",\"↕\"],[\"upharpoonleft\",\"↿\"],[\"upharpoonright\",\"↾\"],[\"uplus\",\"⊎\"],[\"upsi\",\"υ\"],[\"upsih\",\"ϒ\"],[\"upsilon\",\"υ\"],[\"upuparrows\",\"⇈\"],[\"urcorn\",\"⌝\"],[\"urcorner\",\"⌝\"],[\"urcrop\",\"⌎\"],[\"uring\",\"ů\"],[\"urtri\",\"◹\"],[\"uscr\",\"𝓊\"],[\"utdot\",\"⋰\"],[\"utilde\",\"ũ\"],[\"utri\",\"▵\"],[\"utrif\",\"▴\"],[\"uuarr\",\"⇈\"],[\"uuml\",\"ü\"],[\"uwangle\",\"⦧\"],[\"vArr\",\"⇕\"],[\"vBar\",\"⫨\"],[\"vBarv\",\"⫩\"],[\"vDash\",\"⊨\"],[\"vangrt\",\"⦜\"],[\"varepsilon\",\"ϵ\"],[\"varkappa\",\"ϰ\"],[\"varnothing\",\"∅\"],[\"varphi\",\"ϕ\"],[\"varpi\",\"ϖ\"],[\"varpropto\",\"∝\"],[\"varr\",\"↕\"],[\"varrho\",\"ϱ\"],[\"varsigma\",\"ς\"],[\"varsubsetneq\",\"⊊︀\"],[\"varsubsetneqq\",\"⫋︀\"],[\"varsupsetneq\",\"⊋︀\"],[\"varsupsetneqq\",\"⫌︀\"],[\"vartheta\",\"ϑ\"],[\"vartriangleleft\",\"⊲\"],[\"vartriangleright\",\"⊳\"],[\"vcy\",\"в\"],[\"vdash\",\"⊢\"],[\"vee\",\"∨\"],[\"veebar\",\"⊻\"],[\"veeeq\",\"≚\"],[\"vellip\",\"⋮\"],[\"verbar\",\"|\"],[\"vert\",\"|\"],[\"vfr\",\"𝔳\"],[\"vltri\",\"⊲\"],[\"vnsub\",\"⊂⃒\"],[\"vnsup\",\"⊃⃒\"],[\"vopf\",\"𝕧\"],[\"vprop\",\"∝\"],[\"vrtri\",\"⊳\"],[\"vscr\",\"𝓋\"],[\"vsubnE\",\"⫋︀\"],[\"vsubne\",\"⊊︀\"],[\"vsupnE\",\"⫌︀\"],[\"vsupne\",\"⊋︀\"],[\"vzigzag\",\"⦚\"],[\"wcirc\",\"ŵ\"],[\"wedbar\",\"⩟\"],[\"wedge\",\"∧\"],[\"wedgeq\",\"≙\"],[\"weierp\",\"℘\"],[\"wfr\",\"𝔴\"],[\"wopf\",\"𝕨\"],[\"wp\",\"℘\"],[\"wr\",\"≀\"],[\"wreath\",\"≀\"],[\"wscr\",\"𝓌\"],[\"xcap\",\"⋂\"],[\"xcirc\",\"◯\"],[\"xcup\",\"⋃\"],[\"xdtri\",\"▽\"],[\"xfr\",\"𝔵\"],[\"xhArr\",\"⟺\"],[\"xharr\",\"⟷\"],[\"xi\",\"ξ\"],[\"xlArr\",\"⟸\"],[\"xlarr\",\"⟵\"],[\"xmap\",\"⟼\"],[\"xnis\",\"⋻\"],[\"xodot\",\"⨀\"],[\"xopf\",\"𝕩\"],[\"xoplus\",\"⨁\"],[\"xotime\",\"⨂\"],[\"xrArr\",\"⟹\"],[\"xrarr\",\"⟶\"],[\"xscr\",\"𝓍\"],[\"xsqcup\",\"⨆\"],[\"xuplus\",\"⨄\"],[\"xutri\",\"△\"],[\"xvee\",\"⋁\"],[\"xwedge\",\"⋀\"],[\"yacute\",\"ý\"],[\"yacy\",\"я\"],[\"ycirc\",\"ŷ\"],[\"ycy\",\"ы\"],[\"yen\",\"¥\"],[\"yfr\",\"𝔶\"],[\"yicy\",\"ї\"],[\"yopf\",\"𝕪\"],[\"yscr\",\"𝓎\"],[\"yucy\",\"ю\"],[\"yuml\",\"ÿ\"],[\"zacute\",\"ź\"],[\"zcaron\",\"ž\"],[\"zcy\",\"з\"],[\"zdot\",\"ż\"],[\"zeetrf\",\"ℨ\"],[\"zeta\",\"ζ\"],[\"zfr\",\"𝔷\"],[\"zhcy\",\"ж\"],[\"zigrarr\",\"⇝\"],[\"zopf\",\"𝕫\"],[\"zscr\",\"𝓏\"],[\"zwj\",\"\"],[\"zwnj\",\"\"]]"));
|
|
61246
61336
|
|
|
61247
61337
|
//#endregion
|
|
61248
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61338
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/entities.js
|
|
61249
61339
|
/** The largest code point Unicode defines. */
|
|
61250
61340
|
const MAX_CODE_POINT = 1114111;
|
|
61251
61341
|
/**
|
|
@@ -61268,7 +61358,7 @@ const decodeEntity = (entity) => {
|
|
|
61268
61358
|
};
|
|
61269
61359
|
|
|
61270
61360
|
//#endregion
|
|
61271
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61361
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/unescape.js
|
|
61272
61362
|
/** The punctuation set a backslash may escape, per the spec. */
|
|
61273
61363
|
const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
61274
61364
|
/** One entity, in any of the three spec forms. */
|
|
@@ -61283,7 +61373,7 @@ const unescapeChar = (source) => {
|
|
|
61283
61373
|
const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
|
|
61284
61374
|
|
|
61285
61375
|
//#endregion
|
|
61286
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61376
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/code.js
|
|
61287
61377
|
const reBlankLine = /^[ \t]*$/;
|
|
61288
61378
|
const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
|
|
61289
61379
|
/**
|
|
@@ -61368,7 +61458,7 @@ const codeConstruct = {
|
|
|
61368
61458
|
};
|
|
61369
61459
|
|
|
61370
61460
|
//#endregion
|
|
61371
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61461
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/document.js
|
|
61372
61462
|
/** The document root: contains everything except a bare list item. */
|
|
61373
61463
|
const documentConstruct = {
|
|
61374
61464
|
type: "document",
|
|
@@ -61382,7 +61472,7 @@ const documentConstruct = {
|
|
|
61382
61472
|
};
|
|
61383
61473
|
|
|
61384
61474
|
//#endregion
|
|
61385
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61475
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/fencedCode.js
|
|
61386
61476
|
const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
|
|
61387
61477
|
const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
|
|
61388
61478
|
/** The fenced-code block start: three or more backticks or tildes. */
|
|
@@ -61407,7 +61497,7 @@ const fencedCodeStart = {
|
|
|
61407
61497
|
};
|
|
61408
61498
|
|
|
61409
61499
|
//#endregion
|
|
61410
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61500
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/patterns.js
|
|
61411
61501
|
const stickyCache = /* @__PURE__ */ new WeakMap();
|
|
61412
61502
|
const globalCache = /* @__PURE__ */ new WeakMap();
|
|
61413
61503
|
const clone = (pattern, flag, dropCaret) => {
|
|
@@ -61432,7 +61522,7 @@ const globalOf = (pattern) => {
|
|
|
61432
61522
|
};
|
|
61433
61523
|
|
|
61434
61524
|
//#endregion
|
|
61435
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61525
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/references.js
|
|
61436
61526
|
const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
|
|
61437
61527
|
const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
|
|
61438
61528
|
const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
|
|
@@ -61607,7 +61697,7 @@ const parseReference = (text) => {
|
|
|
61607
61697
|
};
|
|
61608
61698
|
|
|
61609
61699
|
//#endregion
|
|
61610
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61700
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
|
|
61611
61701
|
/**
|
|
61612
61702
|
* `_scan_footnote_definition` from `src/scanners.re`:
|
|
61613
61703
|
*
|
|
@@ -61685,7 +61775,7 @@ const footnoteDefinitionStart = {
|
|
|
61685
61775
|
};
|
|
61686
61776
|
|
|
61687
61777
|
//#endregion
|
|
61688
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61778
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/indentedCode.js
|
|
61689
61779
|
/** The indented-code block start: four columns of indentation. */
|
|
61690
61780
|
const indentedCodeStart = {
|
|
61691
61781
|
name: "indentedCode",
|
|
@@ -61700,7 +61790,7 @@ const indentedCodeStart = {
|
|
|
61700
61790
|
};
|
|
61701
61791
|
|
|
61702
61792
|
//#endregion
|
|
61703
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61793
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/segments.js
|
|
61704
61794
|
/**
|
|
61705
61795
|
* The absolute source offset of `textIndex` within a segmented content run.
|
|
61706
61796
|
*
|
|
@@ -61735,7 +61825,7 @@ const sliceWithSegments = (segments, from, to) => {
|
|
|
61735
61825
|
};
|
|
61736
61826
|
|
|
61737
61827
|
//#endregion
|
|
61738
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61828
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
|
|
61739
61829
|
const C_OPEN_BRACKET$1 = 91;
|
|
61740
61830
|
/**
|
|
61741
61831
|
* Split every leading link reference definition out of `block`, inserting one
|
|
@@ -61801,7 +61891,7 @@ const definitionConstruct = {
|
|
|
61801
61891
|
};
|
|
61802
61892
|
|
|
61803
61893
|
//#endregion
|
|
61804
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
61894
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/list.js
|
|
61805
61895
|
const reBulletListMarker = /^[*+-]/;
|
|
61806
61896
|
const reOrderedListMarker = /^(\d{1,9})([.)])/;
|
|
61807
61897
|
const reNonSpace$1 = /[^ \t\f\v\r\n]/;
|
|
@@ -61955,7 +62045,7 @@ const listItemStart = {
|
|
|
61955
62045
|
};
|
|
61956
62046
|
|
|
61957
62047
|
//#endregion
|
|
61958
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62048
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/paragraph.js
|
|
61959
62049
|
/** Paragraph: absorbs lines until a blank one, and contains nothing. */
|
|
61960
62050
|
const paragraphConstruct = {
|
|
61961
62051
|
type: "paragraph",
|
|
@@ -61978,7 +62068,7 @@ const paragraphConstruct = {
|
|
|
61978
62068
|
};
|
|
61979
62069
|
|
|
61980
62070
|
//#endregion
|
|
61981
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62071
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/setextHeading.js
|
|
61982
62072
|
const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
|
|
61983
62073
|
/** The setext heading block start: a run of `=` or `-` under a paragraph. */
|
|
61984
62074
|
const setextHeadingStart = {
|
|
@@ -61999,7 +62089,7 @@ const setextHeadingStart = {
|
|
|
61999
62089
|
};
|
|
62000
62090
|
|
|
62001
62091
|
//#endregion
|
|
62002
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62092
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/table.js
|
|
62003
62093
|
/**
|
|
62004
62094
|
* Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
|
|
62005
62095
|
* invents to pad short rows, which is what stops a wide header followed by a
|
|
@@ -62371,7 +62461,7 @@ const tableCellConstruct = {
|
|
|
62371
62461
|
};
|
|
62372
62462
|
|
|
62373
62463
|
//#endregion
|
|
62374
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62464
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/taskListItem.js
|
|
62375
62465
|
/**
|
|
62376
62466
|
* `_scan_tasklist`, as the generated scanner accepts it.
|
|
62377
62467
|
*
|
|
@@ -62406,7 +62496,7 @@ const taskListItemStart = {
|
|
|
62406
62496
|
};
|
|
62407
62497
|
|
|
62408
62498
|
//#endregion
|
|
62409
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62499
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
|
|
62410
62500
|
const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
|
|
62411
62501
|
const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
|
|
62412
62502
|
/** Thematic break: one line, no children. */
|
|
@@ -62438,7 +62528,7 @@ const thematicBreakStart = {
|
|
|
62438
62528
|
};
|
|
62439
62529
|
|
|
62440
62530
|
//#endregion
|
|
62441
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62531
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockRegistry.js
|
|
62442
62532
|
const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
|
|
62443
62533
|
const commonmarkDialect$1 = {
|
|
62444
62534
|
constructs: constructTable([
|
|
@@ -62511,7 +62601,7 @@ const blockDialect = (dialect) => {
|
|
|
62511
62601
|
};
|
|
62512
62602
|
|
|
62513
62603
|
//#endregion
|
|
62514
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62604
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/lineIndex.js
|
|
62515
62605
|
/**
|
|
62516
62606
|
* A precomputed index of line-start offsets over a fixed source text,
|
|
62517
62607
|
* answering `positionAt(offset)` in `O(log n)` via binary search rather than
|
|
@@ -62586,7 +62676,7 @@ var LineIndex = class LineIndex {
|
|
|
62586
62676
|
};
|
|
62587
62677
|
|
|
62588
62678
|
//#endregion
|
|
62589
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62679
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineNode.js
|
|
62590
62680
|
/** Open a node with no links. */
|
|
62591
62681
|
const makeInlineNode = (type, start, end, value = "") => ({
|
|
62592
62682
|
type,
|
|
@@ -62639,7 +62729,7 @@ const childrenOf = (node) => {
|
|
|
62639
62729
|
};
|
|
62640
62730
|
|
|
62641
62731
|
//#endregion
|
|
62642
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62732
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/emphasis.js
|
|
62643
62733
|
const C_ASTERISK$1 = 42;
|
|
62644
62734
|
const C_UNDERSCORE$1 = 95;
|
|
62645
62735
|
const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
|
|
@@ -62717,7 +62807,7 @@ const emphasisConstruct = {
|
|
|
62717
62807
|
};
|
|
62718
62808
|
|
|
62719
62809
|
//#endregion
|
|
62720
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62810
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/strikethrough.js
|
|
62721
62811
|
/**
|
|
62722
62812
|
* Consume a `~` run as literal text and, when it is a viable one- or
|
|
62723
62813
|
* two-tilde run, push it onto the shared delimiter stack.
|
|
@@ -62792,7 +62882,7 @@ const strikethroughConstruct = {
|
|
|
62792
62882
|
};
|
|
62793
62883
|
|
|
62794
62884
|
//#endregion
|
|
62795
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62885
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/autolink.js
|
|
62796
62886
|
const C_LESSTHAN$1 = 60;
|
|
62797
62887
|
const reEmailAutolink = /^<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/;
|
|
62798
62888
|
const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
|
|
@@ -62825,7 +62915,7 @@ const autolinkConstruct = {
|
|
|
62825
62915
|
};
|
|
62826
62916
|
|
|
62827
62917
|
//#endregion
|
|
62828
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
62918
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
|
|
62829
62919
|
const C_LOWER_W = 119;
|
|
62830
62920
|
const C_COLON = 58;
|
|
62831
62921
|
/** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
|
|
@@ -63196,7 +63286,7 @@ const linkifyEmails = (root) => {
|
|
|
63196
63286
|
};
|
|
63197
63287
|
|
|
63198
63288
|
//#endregion
|
|
63199
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63289
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/codeSpan.js
|
|
63200
63290
|
const C_BACKTICK$1 = 96;
|
|
63201
63291
|
const reTicksHere = /^`+/;
|
|
63202
63292
|
const reNewline = /\n/gm;
|
|
@@ -63225,7 +63315,7 @@ const codeSpanConstruct = {
|
|
|
63225
63315
|
};
|
|
63226
63316
|
|
|
63227
63317
|
//#endregion
|
|
63228
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63318
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/entity.js
|
|
63229
63319
|
const C_AMPERSAND = 38;
|
|
63230
63320
|
const reEntityHere = new RegExp(`^${ENTITY}`, "i");
|
|
63231
63321
|
/** A named, decimal or hexadecimal character reference. */
|
|
@@ -63242,7 +63332,7 @@ const entityConstruct = {
|
|
|
63242
63332
|
};
|
|
63243
63333
|
|
|
63244
63334
|
//#endregion
|
|
63245
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63335
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/escape.js
|
|
63246
63336
|
const C_BACKSLASH = 92;
|
|
63247
63337
|
const C_NEWLINE$1 = 10;
|
|
63248
63338
|
const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
|
|
@@ -63272,7 +63362,7 @@ const escapeConstruct = {
|
|
|
63272
63362
|
};
|
|
63273
63363
|
|
|
63274
63364
|
//#endregion
|
|
63275
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63365
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/link.js
|
|
63276
63366
|
const C_BANG = 33;
|
|
63277
63367
|
const C_CARET$1 = 94;
|
|
63278
63368
|
const C_OPEN_BRACKET = 91;
|
|
@@ -63480,7 +63570,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
|
|
|
63480
63570
|
const linkCloseConstruct = makeLinkCloseConstruct();
|
|
63481
63571
|
|
|
63482
63572
|
//#endregion
|
|
63483
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63573
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
|
|
63484
63574
|
const C_CARET = 94;
|
|
63485
63575
|
/**
|
|
63486
63576
|
* Whether the bracket that just closed looks like `[^...]` with something
|
|
@@ -63538,7 +63628,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
|
|
|
63538
63628
|
const gfmImageOpenConstruct = makeImageOpenConstruct(false);
|
|
63539
63629
|
|
|
63540
63630
|
//#endregion
|
|
63541
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63631
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/lineBreak.js
|
|
63542
63632
|
const C_NEWLINE = 10;
|
|
63543
63633
|
const reInitialSpace = /^ */;
|
|
63544
63634
|
/** A soft or hard line break. */
|
|
@@ -63560,7 +63650,7 @@ const lineBreakConstruct = {
|
|
|
63560
63650
|
};
|
|
63561
63651
|
|
|
63562
63652
|
//#endregion
|
|
63563
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63653
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/rawHtml.js
|
|
63564
63654
|
const C_LESSTHAN = 60;
|
|
63565
63655
|
/** The raw-HTML forms that scan forward for a fixed closing sequence. */
|
|
63566
63656
|
const UNTERMINATED_FORMS = [
|
|
@@ -63583,7 +63673,7 @@ const rawHtmlConstruct = {
|
|
|
63583
63673
|
};
|
|
63584
63674
|
|
|
63585
63675
|
//#endregion
|
|
63586
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63676
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/text.js
|
|
63587
63677
|
const reMain = /^[^\n`[\]\\!<&*_'"]+/;
|
|
63588
63678
|
const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
|
|
63589
63679
|
/** Consume a run of ordinary characters, stopping before any construct's. */
|
|
@@ -63604,7 +63694,7 @@ const textConstruct = runConstruct("text", reMain);
|
|
|
63604
63694
|
const gfmTextConstruct = runConstruct("text", reMainGfm);
|
|
63605
63695
|
|
|
63606
63696
|
//#endregion
|
|
63607
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63697
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineRegistry.js
|
|
63608
63698
|
const triggerTable = (constructs) => {
|
|
63609
63699
|
const table = /* @__PURE__ */ new Map();
|
|
63610
63700
|
for (const construct of constructs) for (const trigger of construct.triggers) {
|
|
@@ -63658,7 +63748,7 @@ const inlineDialect = (dialect) => {
|
|
|
63658
63748
|
};
|
|
63659
63749
|
|
|
63660
63750
|
//#endregion
|
|
63661
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
63751
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineParser.js
|
|
63662
63752
|
const C_UNDERSCORE = 95;
|
|
63663
63753
|
const C_ASTERISK = 42;
|
|
63664
63754
|
const reTrailingSpaces = / +$/;
|
|
@@ -64053,7 +64143,7 @@ var InlineParser = class {
|
|
|
64053
64143
|
const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
|
|
64054
64144
|
|
|
64055
64145
|
//#endregion
|
|
64056
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
64146
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/rawInline.js
|
|
64057
64147
|
const reWhitespace = /\s/;
|
|
64058
64148
|
const reCmarkSpace = /[ \t\n\r]/;
|
|
64059
64149
|
/**
|
|
@@ -64109,7 +64199,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
|
|
|
64109
64199
|
};
|
|
64110
64200
|
|
|
64111
64201
|
//#endregion
|
|
64112
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
64202
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockParser.js
|
|
64113
64203
|
/** Upstream's cheap pre-filter: a line that cannot start any block. */
|
|
64114
64204
|
const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
|
|
64115
64205
|
var BlockParser = class {
|
|
@@ -64517,7 +64607,7 @@ var BlockParser = class {
|
|
|
64517
64607
|
const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
|
|
64518
64608
|
|
|
64519
64609
|
//#endregion
|
|
64520
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
64610
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/phrasing.js
|
|
64521
64611
|
const EMPTY_REFMAP = /* @__PURE__ */ new Map();
|
|
64522
64612
|
const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
|
|
64523
64613
|
/**
|
|
@@ -64567,7 +64657,7 @@ const parsePhrasingText = (text, dialect) => {
|
|
|
64567
64657
|
};
|
|
64568
64658
|
|
|
64569
64659
|
//#endregion
|
|
64570
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
64660
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/stringify.js
|
|
64571
64661
|
const FLOW_CONTEXT = {
|
|
64572
64662
|
singleLine: false,
|
|
64573
64663
|
inTable: false,
|
|
@@ -65264,7 +65354,7 @@ const stringifyTree = (root) => {
|
|
|
65264
65354
|
};
|
|
65265
65355
|
|
|
65266
65356
|
//#endregion
|
|
65267
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
65357
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/Markdown.js
|
|
65268
65358
|
/**
|
|
65269
65359
|
* The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
|
|
65270
65360
|
* 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
|
|
@@ -65658,7 +65748,7 @@ var Markdown = class Markdown {
|
|
|
65658
65748
|
};
|
|
65659
65749
|
|
|
65660
65750
|
//#endregion
|
|
65661
|
-
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0.
|
|
65751
|
+
//#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/Mdast.js
|
|
65662
65752
|
/**
|
|
65663
65753
|
* The remark-ecosystem interop boundary: projection between this package's
|
|
65664
65754
|
* node classes and plain mdast JSON.
|