podlite 0.0.20 → 0.0.22
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/CHANGELOG.md +4 -0
- package/lib/plugins/extrnal.js +7 -8
- package/package.json +8 -7
- package/src/plugins/extrnal.ts +8 -6
- package/tsconfig.tsbuildinfo +1 -1
- package/lib/tools.d.ts +0 -0
- package/lib/tools.js +0 -124
- package/src/tools.ts +0 -126
- package/t/fill-fixtures.ts +0 -40
- package/t/fixtures/00-main_1.txt +0 -25
- package/t/fixtures/00-main_broken_refs.txt +0 -106
- package/t/fixtures/00-main_images.txt +0 -33
- package/t/fixtures/00-main_link.txt +0 -21
- package/t/fixtures/00-main_links.txt +0 -79
- package/t/fixtures/01-node-api_1.txt +0 -2172
- package/t/fixtures/02-inlines_inline_code.txt +0 -78
- package/t/fixtures/02-inlines_thematic_break.txt +0 -9
- package/t/fixtures/03-blockquotes_blockquote.txt +0 -28
- package/t/fixtures/04-tables_table.txt +0 -77
- package/t/fixtures/05-strikethrough_strikethrough.txt +0 -12
- package/t/fixtures-md/00-main.t +0 -34
- package/t/fixtures-md/01-node-api.t +0 -234
- package/t/fixtures-md/02-inlines.t +0 -20
- package/t/fixtures-md/03-blockquotes.t +0 -6
- package/t/fixtures-md/04-tables.t +0 -6
- package/t/fixtures-md/05-strikethrough.t +0 -3
- package/t/md2ast.test.ts +0 -31
package/CHANGELOG.md
CHANGED
package/lib/plugins/extrnal.js
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const image_1 =
|
|
3
|
+
const image_1 = require("@podlite/image");
|
|
7
4
|
const diagram_1 = require("@podlite/diagram");
|
|
8
|
-
const
|
|
5
|
+
const markdown_1 = require("@podlite/markdown");
|
|
6
|
+
const toc_1 = require("@podlite/toc");
|
|
9
7
|
const external = {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
...diagram_1.PluginRegister,
|
|
9
|
+
...markdown_1.PluginRegister,
|
|
10
|
+
...image_1.PluginRegister,
|
|
11
|
+
...toc_1.PluginRegister,
|
|
13
12
|
};
|
|
14
13
|
exports.default = external;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "podlite",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "Adaptation of pod6 markup language",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -19,12 +19,13 @@
|
|
|
19
19
|
"author": "Alexandr Zahatski",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@podlite/diagram": "^0.0.
|
|
23
|
-
"@podlite/image": "^0.0.
|
|
24
|
-
"@podlite/
|
|
25
|
-
"@podlite/
|
|
26
|
-
"
|
|
27
|
-
"
|
|
22
|
+
"@podlite/diagram": "^0.0.14",
|
|
23
|
+
"@podlite/image": "^0.0.9",
|
|
24
|
+
"@podlite/markdown": "0.0.2",
|
|
25
|
+
"@podlite/schema": "^0.0.10",
|
|
26
|
+
"@podlite/toc": "0.0.3",
|
|
27
|
+
"nanoid": "3.1.30",
|
|
28
|
+
"pod6": "^0.0.48"
|
|
28
29
|
},
|
|
29
30
|
"devDependencies": {
|
|
30
31
|
"@types/jest": "^26.0.21",
|
package/src/plugins/extrnal.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import {Plugins} from '@podlite/schema'
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
2
|
+
import {PluginRegister} from '@podlite/image'
|
|
3
|
+
import { PluginRegister as DiagramRegister } from '@podlite/diagram';
|
|
4
|
+
import { PluginRegister as MarkdownRegister } from '@podlite/markdown';
|
|
5
|
+
import { PluginRegister as TocRegister } from '@podlite/toc';
|
|
5
6
|
const external:Plugins = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
...DiagramRegister,
|
|
8
|
+
...MarkdownRegister,
|
|
9
|
+
...PluginRegister,
|
|
10
|
+
...TocRegister,
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
export default external
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../node_modules/pod6/built/helpers/makeTransformer.d.ts","../../node_modules/pod6/built/exportHtml.d.ts","../../node_modules/pod6/built/index.d.ts","../../node_modules/nanoid/index.d.ts","../../node_modules/ajv/dist/compile/codegen/code.d.ts","../../node_modules/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/ajv/dist/compile/codegen/index.d.ts","../../node_modules/ajv/dist/compile/rules.d.ts","../../node_modules/ajv/dist/compile/subschema.d.ts","../../node_modules/ajv/dist/compile/context.d.ts","../../node_modules/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/ajv/dist/vocabularies/errors.d.ts","../../node_modules/ajv/dist/types/json-schema.d.ts","../../node_modules/ajv/dist/types/jtd-schema.d.ts","../../node_modules/ajv/dist/compile/error_classes.d.ts","../../node_modules/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/ajv/dist/compile/resolve.d.ts","../../node_modules/ajv/dist/compile/index.d.ts","../../node_modules/ajv/dist/types/index.d.ts","../../node_modules/ajv/dist/ajv.d.ts","../podlite-schema/lib/types.d.ts","../podlite-schema/lib/blocks-helpers.d.ts","../podlite-schema/lib/query-helpers.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/index.d.ts","./src/ids.ts","../../node_modules/pod6/built/exportAny.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/pod6/built/writer.d.ts","../../node_modules/pod6/built/helpers/makeQuery.d.ts","../../node_modules/pod6/built/helpers/handlers.d.ts","./src/plugins/index.ts","../podlite-image/lib/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../podlite-diagrams/lib/index.d.ts","../podlite-toc/lib/index.d.ts","./src/plugins/extrnal.ts","./src/index.ts","./src/mdtopod6.ts","./src/tools.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","./node_modules/@types/jest/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","0b69226aac5cce5a2a9d25f95dea7986caf4d36952cabb6eb8b660219daf9356","401a75f4fbeea4471faad9e3aa87b4420755e3e2af8d594baba33b162b861de1","6ee5f0c5b153902d76a4327cae94cc718aee565afff54d0eb815084de6de2e4d","84d6554f8e476560c42512aabe6b9dfd19922e51d3a5d0adcb18bb92d6639533","2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","d81220988a7f97fece26e808c7779fd97f7f424f723f7db1fab74786a912333b","b657fb93161f0d16f051b37f47c6ff64307866c9f346ad88cb034507f78848f9","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","6fa804112d574737638af24d452f3e4bed1a390b1dc6599a3036c6917a4d4418","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","a1ed409dbe0f3aee130b2677e53a0fbb885a274633de78c543af3cedc543f404","336d441e18e353ec2228e4c7540d4b46e9358a59dcc6b248c52a98537cac8623","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","f6843d31f1b938ff6daf4a843ee35e1c3207bc52a65b0762b34b84ab02105058","4ae072529fbdcbceccfc59fd97b407bcfd5ec13ba5ba49d14a57b4e8b42a2562",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"a5187e776bba3e68f443fde17274683897227d3b1cef6c8514c753f5ac79efff","e2a64d688008f9673f17571f2fa95f0b701f119eb94cc6cfba53b55443d78329","3dc69245bfcabc2713e08783f25e95d80720f890b5501547d95b9222a78cf3c6","bf2739fadc8c7410866ea59c7068184afac13893fe5a5fc850a7a2a1a7c0ebfc","6610377da4e689e13aa2db7af5a91b21737a88f7ca744f324c556e471280e932","70600c6f0759d272c57571feebf9721fad4eb69c04f22f7c0b6f10dcfbbfa8f1","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","target":6},"fileIdsList":[[138],[138,172],[138,170,171,173,174,175],[138,170],[138,170,173],[111,138,145],[138,178],[138,179],[95,138],[98,138],[99,104,138],[100,110,111,118,127,137,138],[100,101,110,118,138],[102,138],[103,104,111,119,138],[104,127,134,138],[105,107,110,118,138],[106,138],[107,108,138],[109,110,138],[110,138],[110,111,112,127,137,138],[110,111,112,127,138],[113,118,127,137,138],[110,111,113,114,118,127,134,137,138],[113,115,127,134,137,138],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[110,116,138],[117,137,138],[107,110,118,127,138],[119,138],[120,138],[98,121,138],[122,136,138,142],[123,138],[124,138],[110,125,138],[125,126,138,140],[110,127,128,129,138],[127,129,138],[127,128,138],[130,138],[131,138],[110,132,133,138],[132,133,138],[104,118,127,134,138],[135,138],[118,136,138],[99,113,124,137,138],[104,138],[127,138,139],[138,140],[138,141],[99,104,110,112,121,127,137,138,140,142],[127,138,143],[138,155],[138,151,152,153,154],[138,191],[50,51,53,77,78,81,84,85,138],[48,49,138],[48,138],[50,51,52,84,85,138],[85,138],[50,51,81,83,85,138],[82,85,86,138],[50,51,84,85,138],[50,51,53,77,78,79,80,84,85,138],[50,51,53,81,84,138],[53,85,138],[55,56,57,58,59,60,61,62,63,85,138],[54,64,72,73,74,75,76,138],[57,85,138],[65,66,67,68,69,70,71,85,138],[138,162,163],[138,162,163,164,165],[138,147],[138,146],[45,138],[110,138,145],[138,167],[138,166,168],[44,46,47,92,138],[46,92,93,94,138,149,158],[92,138,150,156,157],[138,148],[92,138,155],[92,138],[87,138],[86,87,88,89,90,91,138]],"referencedMap":[[172,1],[173,2],[170,1],[176,3],[171,4],[174,5],[175,4],[177,6],[178,1],[179,7],[180,8],[181,1],[182,1],[183,1],[184,1],[95,9],[96,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,15],[104,16],[105,17],[106,18],[107,19],[108,19],[109,20],[110,21],[111,22],[112,23],[97,1],[144,1],[113,24],[114,25],[115,26],[145,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,34],[123,35],[124,36],[125,37],[126,38],[127,39],[129,40],[128,41],[130,42],[131,43],[132,44],[133,45],[134,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[185,1],[186,1],[187,1],[153,1],[188,56],[151,1],[155,57],[189,1],[154,1],[190,1],[191,1],[192,58],[86,59],[48,1],[50,60],[49,61],[53,62],[80,63],[84,64],[83,65],[51,63],[52,66],[54,66],[81,67],[85,68],[78,1],[79,1],[55,63],[59,63],[61,63],[56,63],[57,69],[63,63],[64,70],[60,63],[62,63],[58,63],[77,71],[73,63],[75,63],[74,63],[70,63],[76,72],[71,63],[72,73],[65,63],[66,63],[67,63],[68,63],[69,63],[152,1],[162,1],[164,74],[166,75],[165,74],[163,1],[47,1],[94,1],[45,1],[148,76],[147,77],[44,1],[46,78],[146,79],[168,80],[167,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[82,1],[169,81],[93,82],[159,83],[160,1],[158,84],[149,85],[161,1],[156,86],[150,87],[90,1],[91,1],[88,88],[92,89],[89,1],[87,1],[157,87]],"exportedModulesMap":[[172,1],[173,2],[170,1],[176,3],[171,4],[174,5],[175,4],[177,6],[178,1],[179,7],[180,8],[181,1],[182,1],[183,1],[184,1],[95,9],[96,9],[98,10],[99,11],[100,12],[101,13],[102,14],[103,15],[104,16],[105,17],[106,18],[107,19],[108,19],[109,20],[110,21],[111,22],[112,23],[97,1],[144,1],[113,24],[114,25],[115,26],[145,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,34],[123,35],[124,36],[125,37],[126,38],[127,39],[129,40],[128,41],[130,42],[131,43],[132,44],[133,45],[134,46],[135,47],[136,48],[137,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[185,1],[186,1],[187,1],[153,1],[188,56],[151,1],[155,57],[189,1],[154,1],[190,1],[191,1],[192,58],[86,59],[48,1],[50,60],[49,61],[53,62],[80,63],[84,64],[83,65],[51,63],[52,66],[54,66],[81,67],[85,68],[78,1],[79,1],[55,63],[59,63],[61,63],[56,63],[57,69],[63,63],[64,70],[60,63],[62,63],[58,63],[77,71],[73,63],[75,63],[74,63],[70,63],[76,72],[71,63],[72,73],[65,63],[66,63],[67,63],[68,63],[69,63],[152,1],[162,1],[164,74],[166,75],[165,74],[163,1],[47,1],[94,1],[45,1],[148,76],[147,77],[44,1],[46,78],[146,79],[168,80],[167,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[82,1],[169,81],[93,82],[159,83],[160,1],[158,84],[149,85],[161,1],[156,86],[150,87],[90,1],[91,1],[88,88],[92,89],[89,1],[87,1],[157,87]],"semanticDiagnosticsPerFile":[172,173,170,176,171,174,175,177,178,179,180,181,182,183,184,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,144,113,114,115,145,116,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,185,186,187,153,188,151,155,189,154,190,191,192,86,48,50,49,53,80,84,83,51,52,54,81,85,78,79,55,59,61,56,57,63,64,60,62,58,77,73,75,74,70,76,71,72,65,66,67,68,69,152,162,164,166,165,163,47,94,45,148,147,44,46,146,168,167,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,82,169,93,159,160,158,149,161,156,150,90,91,88,92,89,87,157]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2019.full.d.ts","../../node_modules/pod6/built/helpers/makeTransformer.d.ts","../../node_modules/pod6/built/exportHtml.d.ts","../../node_modules/pod6/built/index.d.ts","../../node_modules/nanoid/index.d.ts","../../node_modules/ajv/dist/compile/codegen/code.d.ts","../../node_modules/ajv/dist/compile/codegen/scope.d.ts","../../node_modules/ajv/dist/compile/codegen/index.d.ts","../../node_modules/ajv/dist/compile/rules.d.ts","../../node_modules/ajv/dist/compile/subschema.d.ts","../../node_modules/ajv/dist/compile/context.d.ts","../../node_modules/ajv/dist/compile/validate/dataType.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../../node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts","../../node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts","../../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../../node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../../node_modules/ajv/dist/vocabularies/format/format.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts","../../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts","../../node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts","../../node_modules/ajv/dist/vocabularies/errors.d.ts","../../node_modules/ajv/dist/types/json-schema.d.ts","../../node_modules/ajv/dist/types/jtd-schema.d.ts","../../node_modules/ajv/dist/compile/error_classes.d.ts","../../node_modules/ajv/dist/core.d.ts","../../node_modules/uri-js/dist/es5/uri.all.d.ts","../../node_modules/ajv/dist/compile/resolve.d.ts","../../node_modules/ajv/dist/compile/index.d.ts","../../node_modules/ajv/dist/types/index.d.ts","../../node_modules/ajv/dist/ajv.d.ts","../podlite-schema/lib/types.d.ts","../podlite-schema/lib/blocks-helpers.d.ts","../podlite-schema/lib/query-helpers.d.ts","../podlite-schema/lib/ast-helpers.d.ts","../podlite-schema/lib/ast-inerator.d.ts","../podlite-schema/lib/index.d.ts","./src/ids.ts","../../node_modules/pod6/built/exportAny.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/pod6/built/writer.d.ts","../../node_modules/pod6/built/helpers/makeQuery.d.ts","../../node_modules/pod6/built/helpers/handlers.d.ts","./src/plugins/index.ts","../podlite-image/lib/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../podlite-diagrams/lib/index.d.ts","../podlite-markdown/lib/index.d.ts","../podlite-toc/lib/index.d.ts","./src/plugins/extrnal.ts","./src/index.ts","./src/mdtopod6.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.d.ts","./node_modules/@types/jest/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"1f03b495671c3a1bd24510f38b8947f0991dfd6bf0278c68eca14af15b306e1f","0b69226aac5cce5a2a9d25f95dea7986caf4d36952cabb6eb8b660219daf9356","401a75f4fbeea4471faad9e3aa87b4420755e3e2af8d594baba33b162b861de1","c4af29f4dcd2aaf12d6c37f5494d6155e215639aa9b65a736d65865006e934f3","84d6554f8e476560c42512aabe6b9dfd19922e51d3a5d0adcb18bb92d6639533","2274b0f0e4f20a1af3309985337bd8a7f45610145db3c37485ea8697c0778eda","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b250a278297e209148e3ee53c5f27b773a351618b0a0c5b8fe0397d2fbd08576","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","b57d661f8123e266307b11fbf08ec29363f84f482622f99e42cf3fdf94059255","726416fd6b5f6d16c91fe5f2dee9ac722bceddd8f8e5d0fc9c3399c7c2efd9b1","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","1c68c3020dfada02f9e9671c7c13fb7adea15118f3acc2d21f02a7b3c632482c","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9e8575c515e21e1b51ab7eb78cfd763ec857cfd7b4f985a4f394f9ea8c0ac36d","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","6539823527c9349664b239204197757434e287e9ef7c2c29afaad10a79f3348a","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","4dbd5a4e8c71e60af9af1d38d1ac5f6eedef3591afb556ed164f169061706f15","5db5754073f92ef99fef159a3415a733db507af67126b287daa51553cb9107d2","ac162509239b1a48ab6aa39a3fc34dd7d8cde209c59188f699b3ef78964165e0","44fa175d725f678ed47ee3cbaf2fcdf688559e672352ac24c721dd9ceef7d7c1","9556b6427e049169448398e1e59fb393e4de91852abda84dd569d0e7b038e641","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","8f35095ce6914b0e95d563adae6f2546dddd8f85c4034d9050530076d860b5b8","893edbff0dcaf7c4ef650c24cfcf87e6ad63d3e0457f7524d5706f8599e7bac3","06f6c325a4cec7589a46fb8c335b4da840b125bf20d514411fead13478b008b9","a3b6fafae3db815903c6ee13b8c77a43a89fba98fabf263a254f015b388cf190","aad69465794f04cbb182a5bf7b235696117236b96f0c8d1031b7842878a9071a","8500f1c50ee5fb526b737dd167c81077ca11d9c50afb15851b50ff81324b8088","b30fdd8d44300d4ace7f2de31e97ed7f310035978a4fd0f92c66631788f29215","6fa804112d574737638af24d452f3e4bed1a390b1dc6599a3036c6917a4d4418","16eea98e8cae4cf865f5102513430ed361c16973d431f6c3b77db95ad3493902","bfbd1bc7798f7171950d73a74e497dd045f662d73caab9de34b2a6f35e1e84a9","a1ed409dbe0f3aee130b2677e53a0fbb885a274633de78c543af3cedc543f404","336d441e18e353ec2228e4c7540d4b46e9358a59dcc6b248c52a98537cac8623","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"19fa46aae5c730811087296a9dff1dbb7be3b63170668628c3018b28775d1b4d","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6f310052978d351ebf9033e90bf009e718522c7cb7c148cc9cb9413a73657250","142f7ea2d6affb8c5f4c14723ad122124f1fd1a29aa6ef9b5c46daf6cda719ce","dd6fc277379bfe5da22e38dae767e07da2abad6faf9fc1e0fa6e927b99a91bba","f6843d31f1b938ff6daf4a843ee35e1c3207bc52a65b0762b34b84ab02105058","ee31f39f5738baafbc5d9360221d0f89beb3eba280ef1a16ef25cf1329a0aba8",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"87912fef55e90f538e12ecdbdc2e05df5f385e519b0023dd5bfb7996cf26056c","ab3954116d438f462b200fbb93777fbcca4b5cfa8889278224ec2527c0fecf31","51ea8a0564e75d36c1a84a9dd762c6effade5cb0beff3c481ded9bebdd5393c7","5486900108e374e89b0bcf8ea0b4c8da9e08fd83f206d27e8a2b4a7df4e69a10","bf2739fadc8c7410866ea59c7068184afac13893fe5a5fc850a7a2a1a7c0ebfc","6610377da4e689e13aa2db7af5a91b21737a88f7ca744f324c556e471280e932","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"b668b7fb7c52a05fb9233a27ba5099a73cd8e157b037d67399336635495ab483","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","069733dc220affbe58d9c1d1a93af3707bc515aaed761701d8741b57da4cb964","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"jsx":2,"module":1,"outDir":"./lib","rootDir":"./src","target":6},"fileIdsList":[[138],[138,172],[138,170,171,173,174,175],[138,170],[138,170,173],[138,177],[111,138,145],[138,180],[138,181],[138,185],[95,138],[98,138],[99,104,138],[100,110,111,118,127,137,138],[100,101,110,118,138],[102,138],[103,104,111,119,138],[104,127,134,138],[105,107,110,118,138],[106,138],[107,108,138],[109,110,138],[110,138],[110,111,112,127,137,138],[110,111,112,127,138],[113,118,127,137,138],[110,111,113,114,118,127,134,137,138],[113,115,127,134,137,138],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[110,116,138],[117,137,138],[107,110,118,127,138],[119,138],[120,138],[98,121,138],[122,136,138,142],[123,138],[124,138],[110,125,138],[125,126,138,140],[110,127,128,129,138],[127,129,138],[127,128,138],[130,138],[131,138],[110,132,133,138],[132,133,138],[104,118,127,134,138],[135,138],[118,136,138],[99,113,124,137,138],[104,138],[127,138,139],[138,140],[138,141],[99,104,110,112,121,127,137,138,140,142],[127,138,143],[138,155],[138,151,152,153,154],[138,195],[50,51,53,77,78,81,84,85,138],[48,49,138],[48,138],[50,51,52,84,85,138],[85,138],[50,51,81,83,85,138],[82,85,86,138],[50,51,84,85,138],[50,51,53,77,78,79,80,84,85,138],[50,51,53,81,84,138],[53,85,138],[55,56,57,58,59,60,61,62,63,85,138],[54,64,72,73,74,75,76,138],[57,85,138],[65,66,67,68,69,70,71,85,138],[138,162,163],[138,162,163,164,165],[138,147],[138,146],[45,138],[110,138,145],[138,167],[138,166,168],[44,46,47,92,138],[46,92,93,94,138,149,159],[92,138,150,156,157,158],[138,148],[92,138,155],[92,138],[87,138],[86,87,88,89,90,91,138]],"referencedMap":[[172,1],[173,2],[170,1],[176,3],[171,4],[174,5],[175,4],[178,6],[179,7],[180,1],[181,8],[182,9],[183,1],[184,1],[186,10],[187,1],[188,1],[177,1],[95,11],[96,11],[98,12],[99,13],[100,14],[101,15],[102,16],[103,17],[104,18],[105,19],[106,20],[107,21],[108,21],[109,22],[110,23],[111,24],[112,25],[97,1],[144,1],[113,26],[114,27],[115,28],[145,29],[116,30],[117,31],[118,32],[119,33],[120,34],[121,35],[122,36],[123,37],[124,38],[125,39],[126,40],[127,41],[129,42],[128,43],[130,44],[131,45],[132,46],[133,47],[134,48],[135,49],[136,50],[137,51],[138,52],[139,53],[140,54],[141,55],[142,56],[143,57],[189,1],[190,1],[191,1],[153,1],[192,58],[151,1],[155,59],[193,1],[154,1],[194,1],[185,1],[195,1],[196,60],[86,61],[48,1],[50,62],[49,63],[53,64],[80,65],[84,66],[83,67],[51,65],[52,68],[54,68],[81,69],[85,70],[78,1],[79,1],[55,65],[59,65],[61,65],[56,65],[57,71],[63,65],[64,72],[60,65],[62,65],[58,65],[77,73],[73,65],[75,65],[74,65],[70,65],[76,74],[71,65],[72,75],[65,65],[66,65],[67,65],[68,65],[69,65],[152,1],[162,1],[164,76],[166,77],[165,76],[163,1],[47,1],[94,1],[45,1],[148,78],[147,79],[44,1],[46,80],[146,81],[168,82],[167,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[82,1],[169,83],[93,84],[160,85],[161,1],[159,86],[149,87],[156,88],[150,89],[157,89],[90,1],[91,1],[88,90],[92,91],[89,1],[87,1],[158,89]],"exportedModulesMap":[[172,1],[173,2],[170,1],[176,3],[171,4],[174,5],[175,4],[178,6],[179,7],[180,1],[181,8],[182,9],[183,1],[184,1],[186,10],[187,1],[188,1],[177,1],[95,11],[96,11],[98,12],[99,13],[100,14],[101,15],[102,16],[103,17],[104,18],[105,19],[106,20],[107,21],[108,21],[109,22],[110,23],[111,24],[112,25],[97,1],[144,1],[113,26],[114,27],[115,28],[145,29],[116,30],[117,31],[118,32],[119,33],[120,34],[121,35],[122,36],[123,37],[124,38],[125,39],[126,40],[127,41],[129,42],[128,43],[130,44],[131,45],[132,46],[133,47],[134,48],[135,49],[136,50],[137,51],[138,52],[139,53],[140,54],[141,55],[142,56],[143,57],[189,1],[190,1],[191,1],[153,1],[192,58],[151,1],[155,59],[193,1],[154,1],[194,1],[185,1],[195,1],[196,60],[86,61],[48,1],[50,62],[49,63],[53,64],[80,65],[84,66],[83,67],[51,65],[52,68],[54,68],[81,69],[85,70],[78,1],[79,1],[55,65],[59,65],[61,65],[56,65],[57,71],[63,65],[64,72],[60,65],[62,65],[58,65],[77,73],[73,65],[75,65],[74,65],[70,65],[76,74],[71,65],[72,75],[65,65],[66,65],[67,65],[68,65],[69,65],[152,1],[162,1],[164,76],[166,77],[165,76],[163,1],[47,1],[94,1],[45,1],[148,78],[147,79],[44,1],[46,80],[146,81],[168,82],[167,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[43,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[82,1],[169,83],[93,84],[160,85],[161,1],[159,86],[149,87],[156,88],[150,89],[157,89],[90,1],[91,1],[88,90],[92,91],[89,1],[87,1],[158,89]],"semanticDiagnosticsPerFile":[172,173,170,176,171,174,175,178,179,180,181,182,183,184,186,187,188,177,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,144,113,114,115,145,116,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,189,190,191,153,192,151,155,193,154,194,185,195,196,86,48,50,49,53,80,84,83,51,52,54,81,85,78,79,55,59,61,56,57,63,64,60,62,58,77,73,75,74,70,76,71,72,65,66,67,68,69,152,162,164,166,165,163,47,94,45,148,147,44,46,146,168,167,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,43,33,34,35,36,7,41,37,38,39,40,1,42,11,10,82,169,93,160,161,159,149,156,150,157,90,91,88,92,89,87,158]},"version":"4.5.5"}
|
package/lib/tools.d.ts
DELETED
|
File without changes
|
package/lib/tools.js
DELETED
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
// import unified from 'unified'
|
|
2
|
-
// import markdown from 'remark-parse'
|
|
3
|
-
// import toAny from 'pod6/built/exportAny'
|
|
4
|
-
// import { AstTree, BlockImage, Location, mkBlock, mkFomattingCode, mkFomattingCodeL, mkVerbatim } from '@podlite/schema'
|
|
5
|
-
// export const md2ast = ( src, extraRules? ) :AstTree => {
|
|
6
|
-
// // first convert mardown to ast
|
|
7
|
-
// const md_tree = unified().use(markdown).parse(src)
|
|
8
|
-
// // first pass : collect linkRefs
|
|
9
|
-
// let definitionMap = {}
|
|
10
|
-
// toAny({processor:1})
|
|
11
|
-
// .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
|
|
12
|
-
// if (node.children) interator(node.children, { ...ctx})
|
|
13
|
-
// }})
|
|
14
|
-
// .use({':definition' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
15
|
-
// definitionMap[node.identifier] = node
|
|
16
|
-
// }}).run(md_tree)
|
|
17
|
-
// // second stage - make Universal AST nodes
|
|
18
|
-
// const uast = []
|
|
19
|
-
// const res = toAny({processor:1})
|
|
20
|
-
// .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
|
|
21
|
-
// console.warn('[Podlite]')
|
|
22
|
-
// console.warn(JSON.stringify(node,null,2))
|
|
23
|
-
// if (node.children) interator(node.children, { ...ctx})
|
|
24
|
-
// }})
|
|
25
|
-
// .use({
|
|
26
|
-
// ':root' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
27
|
-
// const { children, position, ...attr} = node
|
|
28
|
-
// return mkBlock({name:"pod", location:position}, interator(children, ctx))
|
|
29
|
-
// },
|
|
30
|
-
// ':heading' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
31
|
-
// const { children, position, ...attr} = node
|
|
32
|
-
// return mkBlock({type:'block', level:node.depth,name:'head', location:position}, interator(children, ctx));
|
|
33
|
-
// },
|
|
34
|
-
// ':text' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
35
|
-
// const { children, position, ...attr} = node
|
|
36
|
-
// return node.value
|
|
37
|
-
// // return mkNode({type:"text", value: node.value})
|
|
38
|
-
// },
|
|
39
|
-
// ':list' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
40
|
-
// const savedListLevel = ctx['listLevel'] || 0
|
|
41
|
-
// const { children, position, ...attr} = node
|
|
42
|
-
// return mkBlock( { type:'list', level:savedListLevel+1, list: node.ordered ? 'ordered' : 'itemized' }, interator(children, { ...ctx, listLevel : savedListLevel + 1, ordered: node.ordered}))
|
|
43
|
-
// },
|
|
44
|
-
// ':listItem' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
45
|
-
// const savedListLevel = ctx['listLevel'] || 0
|
|
46
|
-
// const { children, position, ...attr} = node
|
|
47
|
-
// return mkBlock({name: 'item', type:'block', level:ctx['listLevel'], location:position}, interator(children, { ...ctx, listLevel : savedListLevel , ordered: node.ordered}))
|
|
48
|
-
// },
|
|
49
|
-
// ':paragraph' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
50
|
-
// const { children, position, ...attr} = node
|
|
51
|
-
// return mkBlock({type:'para', location:position}, interator(children, { ...ctx}))
|
|
52
|
-
// },
|
|
53
|
-
// ':linkReference' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
54
|
-
// const { children, position, ...attr} = node
|
|
55
|
-
// const definition = definitionMap[attr.identifier]
|
|
56
|
-
// const meta = definition?.url || ''
|
|
57
|
-
// return mkFomattingCodeL({ meta}, interator(children, { ...ctx}))
|
|
58
|
-
// },
|
|
59
|
-
// ':definition' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
60
|
-
// return null
|
|
61
|
-
// },
|
|
62
|
-
// ':inlineCode' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
63
|
-
// const { children, position, ...attr} = node
|
|
64
|
-
// return mkFomattingCode({name:"C", location:position}, [node.value])
|
|
65
|
-
// },
|
|
66
|
-
// ':strong' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
67
|
-
// const { children, position, ...attr} = node
|
|
68
|
-
// return mkFomattingCode({name:"B", location:position}, interator(children, { ...ctx}))
|
|
69
|
-
// },
|
|
70
|
-
// ':emphasis' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
71
|
-
// const { children, position, ...attr} = node
|
|
72
|
-
// return mkFomattingCode({name:"I", location:position}, interator(children, { ...ctx}))
|
|
73
|
-
// },
|
|
74
|
-
// ':link': ( writer, processor )=>( node, ctx, interator )=>{
|
|
75
|
-
// const { children, position, ...attr} = node
|
|
76
|
-
// return mkFomattingCodeL({ meta:node.url,location:position}, interator(children, { ...ctx}))
|
|
77
|
-
// },
|
|
78
|
-
// ':html': ( writer, processor )=>( node, ctx, interator )=>{
|
|
79
|
-
// const { children, position, ...attr} = node
|
|
80
|
-
// return mkBlock({type:'block', name:'Html', location:position},[mkVerbatim(node.value)]);
|
|
81
|
-
// },
|
|
82
|
-
// ':code' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
83
|
-
// const { children, position, lang, ...attr} = node
|
|
84
|
-
// let config = {}
|
|
85
|
-
// if (lang) { config = { name: 'lang', value:"lang"}}
|
|
86
|
-
// return mkBlock({type:'block', name:'code', config, location:position},[mkVerbatim(node.value)]);
|
|
87
|
-
// },
|
|
88
|
-
// ':image': ( writer, processor )=>( node, ctx, interator )=>{
|
|
89
|
-
// const { title, alt, url, position, ...attr} = node
|
|
90
|
-
// let config = []
|
|
91
|
-
// if (!!title) { config.push({ name: 'title', value:title}) }
|
|
92
|
-
// if (!!alt) { config.push({ name: 'alt', value:alt}) }
|
|
93
|
-
// return mkBlock({type:'block', name:'Image', config, location:position},[mkVerbatim(url)]);
|
|
94
|
-
// },
|
|
95
|
-
// ':thematicBreak': ( writer, processor )=>( node, ctx, interator )=>{
|
|
96
|
-
// return null
|
|
97
|
-
// },
|
|
98
|
-
// ':blockquote' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
99
|
-
// const { children, position, ...attr} = node
|
|
100
|
-
// return mkBlock({type:'nested'}, interator(children, { ...ctx}))
|
|
101
|
-
// },
|
|
102
|
-
// //table section
|
|
103
|
-
// ':table' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
104
|
-
// const { children, position, ...attr} = node
|
|
105
|
-
// return mkBlock({name:'table', location:position}, interator(children, { ...ctx}))
|
|
106
|
-
// },
|
|
107
|
-
// ':tableRow' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
108
|
-
// const { children, position, ...attr} = node
|
|
109
|
-
// return mkBlock({name:'table_row', location:position}, interator(children, { ...ctx}))
|
|
110
|
-
// },
|
|
111
|
-
// ':tableCell' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
112
|
-
// const { children, position, ...attr} = node
|
|
113
|
-
// return mkBlock({name:'table_cell', location:position}, interator(children, { ...ctx}))
|
|
114
|
-
// },
|
|
115
|
-
// ':delete': ( writer, processor )=>( node, ctx, interator )=>{
|
|
116
|
-
// return null
|
|
117
|
-
// },
|
|
118
|
-
// ':break': ( writer, processor )=>( node, ctx, interator )=>{
|
|
119
|
-
// return null
|
|
120
|
-
// },
|
|
121
|
-
// ...extraRules
|
|
122
|
-
// }).run(md_tree)
|
|
123
|
-
// return res.interator
|
|
124
|
-
// }
|
package/src/tools.ts
DELETED
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
// import unified from 'unified'
|
|
2
|
-
// import markdown from 'remark-parse'
|
|
3
|
-
// import toAny from 'pod6/built/exportAny'
|
|
4
|
-
// import { AstTree, BlockImage, Location, mkBlock, mkFomattingCode, mkFomattingCodeL, mkVerbatim } from '@podlite/schema'
|
|
5
|
-
|
|
6
|
-
// export const md2ast = ( src, extraRules? ) :AstTree => {
|
|
7
|
-
// // first convert mardown to ast
|
|
8
|
-
// const md_tree = unified().use(markdown).parse(src)
|
|
9
|
-
// // first pass : collect linkRefs
|
|
10
|
-
// let definitionMap = {}
|
|
11
|
-
// toAny({processor:1})
|
|
12
|
-
// .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
|
|
13
|
-
// if (node.children) interator(node.children, { ...ctx})
|
|
14
|
-
// }})
|
|
15
|
-
// .use({':definition' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
16
|
-
// definitionMap[node.identifier] = node
|
|
17
|
-
// }}).run(md_tree)
|
|
18
|
-
|
|
19
|
-
// // second stage - make Universal AST nodes
|
|
20
|
-
// const uast = []
|
|
21
|
-
// const res = toAny({processor:1})
|
|
22
|
-
// .use({'*:*':( writer, processor )=>( node, ctx, interator )=>{
|
|
23
|
-
// console.warn('[Podlite]')
|
|
24
|
-
// console.warn(JSON.stringify(node,null,2))
|
|
25
|
-
// if (node.children) interator(node.children, { ...ctx})
|
|
26
|
-
// }})
|
|
27
|
-
// .use({
|
|
28
|
-
// ':root' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
29
|
-
// const { children, position, ...attr} = node
|
|
30
|
-
// return mkBlock({name:"pod", location:position}, interator(children, ctx))
|
|
31
|
-
// },
|
|
32
|
-
// ':heading' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
33
|
-
// const { children, position, ...attr} = node
|
|
34
|
-
// return mkBlock({type:'block', level:node.depth,name:'head', location:position}, interator(children, ctx));
|
|
35
|
-
// },
|
|
36
|
-
// ':text' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
37
|
-
// const { children, position, ...attr} = node
|
|
38
|
-
// return node.value
|
|
39
|
-
// // return mkNode({type:"text", value: node.value})
|
|
40
|
-
// },
|
|
41
|
-
// ':list' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
42
|
-
// const savedListLevel = ctx['listLevel'] || 0
|
|
43
|
-
// const { children, position, ...attr} = node
|
|
44
|
-
// return mkBlock( { type:'list', level:savedListLevel+1, list: node.ordered ? 'ordered' : 'itemized' }, interator(children, { ...ctx, listLevel : savedListLevel + 1, ordered: node.ordered}))
|
|
45
|
-
// },
|
|
46
|
-
// ':listItem' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
47
|
-
// const savedListLevel = ctx['listLevel'] || 0
|
|
48
|
-
// const { children, position, ...attr} = node
|
|
49
|
-
// return mkBlock({name: 'item', type:'block', level:ctx['listLevel'], location:position}, interator(children, { ...ctx, listLevel : savedListLevel , ordered: node.ordered}))
|
|
50
|
-
// },
|
|
51
|
-
// ':paragraph' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
52
|
-
// const { children, position, ...attr} = node
|
|
53
|
-
// return mkBlock({type:'para', location:position}, interator(children, { ...ctx}))
|
|
54
|
-
// },
|
|
55
|
-
// ':linkReference' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
56
|
-
// const { children, position, ...attr} = node
|
|
57
|
-
// const definition = definitionMap[attr.identifier]
|
|
58
|
-
// const meta = definition?.url || ''
|
|
59
|
-
// return mkFomattingCodeL({ meta}, interator(children, { ...ctx}))
|
|
60
|
-
// },
|
|
61
|
-
// ':definition' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
62
|
-
// return null
|
|
63
|
-
// },
|
|
64
|
-
// ':inlineCode' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
65
|
-
// const { children, position, ...attr} = node
|
|
66
|
-
// return mkFomattingCode({name:"C", location:position}, [node.value])
|
|
67
|
-
// },
|
|
68
|
-
// ':strong' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
69
|
-
// const { children, position, ...attr} = node
|
|
70
|
-
// return mkFomattingCode({name:"B", location:position}, interator(children, { ...ctx}))
|
|
71
|
-
// },
|
|
72
|
-
// ':emphasis' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
73
|
-
// const { children, position, ...attr} = node
|
|
74
|
-
// return mkFomattingCode({name:"I", location:position}, interator(children, { ...ctx}))
|
|
75
|
-
// },
|
|
76
|
-
// ':link': ( writer, processor )=>( node, ctx, interator )=>{
|
|
77
|
-
// const { children, position, ...attr} = node
|
|
78
|
-
// return mkFomattingCodeL({ meta:node.url,location:position}, interator(children, { ...ctx}))
|
|
79
|
-
// },
|
|
80
|
-
// ':html': ( writer, processor )=>( node, ctx, interator )=>{
|
|
81
|
-
// const { children, position, ...attr} = node
|
|
82
|
-
// return mkBlock({type:'block', name:'Html', location:position},[mkVerbatim(node.value)]);
|
|
83
|
-
// },
|
|
84
|
-
// ':code' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
85
|
-
// const { children, position, lang, ...attr} = node
|
|
86
|
-
// let config = {}
|
|
87
|
-
// if (lang) { config = { name: 'lang', value:"lang"}}
|
|
88
|
-
// return mkBlock({type:'block', name:'code', config, location:position},[mkVerbatim(node.value)]);
|
|
89
|
-
// },
|
|
90
|
-
// ':image': ( writer, processor )=>( node, ctx, interator )=>{
|
|
91
|
-
// const { title, alt, url, position, ...attr} = node
|
|
92
|
-
// let config = []
|
|
93
|
-
// if (!!title) { config.push({ name: 'title', value:title}) }
|
|
94
|
-
// if (!!alt) { config.push({ name: 'alt', value:alt}) }
|
|
95
|
-
// return mkBlock({type:'block', name:'Image', config, location:position},[mkVerbatim(url)]);
|
|
96
|
-
// },
|
|
97
|
-
// ':thematicBreak': ( writer, processor )=>( node, ctx, interator )=>{
|
|
98
|
-
// return null
|
|
99
|
-
// },
|
|
100
|
-
// ':blockquote' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
101
|
-
// const { children, position, ...attr} = node
|
|
102
|
-
// return mkBlock({type:'nested'}, interator(children, { ...ctx}))
|
|
103
|
-
// },
|
|
104
|
-
// //table section
|
|
105
|
-
// ':table' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
106
|
-
// const { children, position, ...attr} = node
|
|
107
|
-
// return mkBlock({name:'table', location:position}, interator(children, { ...ctx}))
|
|
108
|
-
// },
|
|
109
|
-
// ':tableRow' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
110
|
-
// const { children, position, ...attr} = node
|
|
111
|
-
// return mkBlock({name:'table_row', location:position}, interator(children, { ...ctx}))
|
|
112
|
-
// },
|
|
113
|
-
// ':tableCell' : ( writer, processor )=>( node, ctx, interator )=>{
|
|
114
|
-
// const { children, position, ...attr} = node
|
|
115
|
-
// return mkBlock({name:'table_cell', location:position}, interator(children, { ...ctx}))
|
|
116
|
-
// },
|
|
117
|
-
// ':delete': ( writer, processor )=>( node, ctx, interator )=>{
|
|
118
|
-
// return null
|
|
119
|
-
// },
|
|
120
|
-
// ':break': ( writer, processor )=>( node, ctx, interator )=>{
|
|
121
|
-
// return null
|
|
122
|
-
// },
|
|
123
|
-
// ...extraRules
|
|
124
|
-
// }).run(md_tree)
|
|
125
|
-
// return res.interator
|
|
126
|
-
// }
|
package/t/fill-fixtures.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import * as fs from 'fs'
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import cleanplug from 'pod6/built/plugin-clean-location'
|
|
5
|
-
import {loadSrcFixtures} from './test-api'
|
|
6
|
-
import { md2ast } from '../src/'
|
|
7
|
-
import {cleanIds} from '../src/ids'
|
|
8
|
-
const log = (t)=> JSON.stringify(t, null,2)
|
|
9
|
-
const cleanTree = (test)=>{
|
|
10
|
-
return cleanIds({skipChain: 0, podMode: 1})( cleanplug()(test) )
|
|
11
|
-
}
|
|
12
|
-
const allSrcFixtures = loadSrcFixtures('t/fixtures-md/*.t', 't/fixtures')
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const notExistsTests = allSrcFixtures.filter( r => !fs.existsSync(r.testFile))
|
|
16
|
-
const byName = allSrcFixtures.filter( r => r.testFile === 't/fixtures/00-main_links.txt1')
|
|
17
|
-
|
|
18
|
-
// get fixture to test
|
|
19
|
-
const fixture = byName[0] ? byName[0] : (notExistsTests && notExistsTests[0]) ? notExistsTests[0] : null
|
|
20
|
-
if (1 && fixture) {
|
|
21
|
-
|
|
22
|
-
console.log([fixture.testFile, "\n.\n",fixture.text, ".\n"].join(""))
|
|
23
|
-
const test = md2ast(fixture.text,{
|
|
24
|
-
|
|
25
|
-
})
|
|
26
|
-
if (fixture.testFile === 't/fixtures/05-strikethrough_strikethrough.txt') {
|
|
27
|
-
console.log('s')
|
|
28
|
-
const saveTest = (filename, src, tree) =>{
|
|
29
|
-
fs.writeFileSync( filename, [src, JSON.stringify(tree ,null, 2)].join('~~~~~~~\n'))
|
|
30
|
-
}
|
|
31
|
-
// saveTest(fixture.testFile, fixture.text, cleanTree(test))
|
|
32
|
-
console.log('sadasd')
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
console.log(JSON.stringify(cleanTree(test) ,null, 2))
|
|
36
|
-
} else {
|
|
37
|
-
console.log("no new fixtures")
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
package/t/fixtures/00-main_1.txt
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
## build
|
|
2
|
-
|
|
3
|
-
Generate JavaScript documentation as a list of parsed JSDoc
|
|
4
|
-
comments, given a root file as a path.
|
|
5
|
-
~~~~~~~
|
|
6
|
-
{
|
|
7
|
-
"type": "block",
|
|
8
|
-
"name": "pod",
|
|
9
|
-
"content": [
|
|
10
|
-
{
|
|
11
|
-
"type": "block",
|
|
12
|
-
"level": 2,
|
|
13
|
-
"name": "head",
|
|
14
|
-
"content": [
|
|
15
|
-
"build"
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"type": "para",
|
|
20
|
-
"content": [
|
|
21
|
-
"Generate JavaScript documentation as a list of parsed JSDoc\ncomments, given a root file as a path."
|
|
22
|
-
]
|
|
23
|
-
}
|
|
24
|
-
]
|
|
25
|
-
}
|