@forsakringskassan/docs-generator 3.0.4 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{create-markdown-renderer-cnbxjnoS.mjs → create-markdown-renderer-castrIfY.mjs} +6 -6
- package/dist/{create-markdown-renderer-cnbxjnoS.mjs.map → create-markdown-renderer-castrIfY.mjs.map} +1 -1
- package/dist/{format-code.worker-Xf0JB1yl.mjs → format-code.worker-Cs0VeEOX.mjs} +2 -2
- package/dist/{format-code.worker-Xf0JB1yl.mjs.map → format-code.worker-Cs0VeEOX.mjs.map} +1 -1
- package/dist/index.d.mts +30 -1
- package/dist/index.mjs +124 -45
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +3 -3
- package/dist/processors/selectable-version.mjs +15 -2
- package/dist/runtime.mjs +442 -392
- package/dist/{vendor-s-84ehgc.mjs → vendor-DO1GigtJ.mjs} +77 -30
- package/dist/{vendor-s-84ehgc.mjs.map → vendor-DO1GigtJ.mjs.map} +1 -1
- package/dist/{vue3-RC792pPN.mjs → vue3-CnvFixWY.mjs} +15 -3
- package/dist/{vue3-RC792pPN.mjs.map → vue3-CnvFixWY.mjs.map} +1 -1
- package/dist/{worker-CVWE4d_P.mjs → worker-DO8E5WXF.mjs} +2 -2
- package/dist/{worker-CVWE4d_P.mjs.map → worker-DO8E5WXF.mjs.map} +1 -1
- package/package.json +1 -1
- package/templates/base.template.html +0 -9
- package/templates/partials/search-preload.html +8 -0
package/dist/{create-markdown-renderer-cnbxjnoS.mjs → create-markdown-renderer-castrIfY.mjs}
RENAMED
|
@@ -2,7 +2,7 @@ import { createRequire as $createRequire } from "node:module";
|
|
|
2
2
|
|
|
3
3
|
const require = $createRequire(import.meta.url);
|
|
4
4
|
|
|
5
|
-
import { c as createSyncFn, d as dedent, H as HighlightJS, b as createTwoFilesPatch, M as MarkdownIt, e as deflist_plugin } from './vendor-
|
|
5
|
+
import { c as createSyncFn, d as dedent, H as HighlightJS, b as createTwoFilesPatch, M as MarkdownIt, e as deflist_plugin } from './vendor-DO1GigtJ.mjs';
|
|
6
6
|
import path from 'node:path/posix';
|
|
7
7
|
import path__default from 'node:path';
|
|
8
8
|
import crypto from 'node:crypto';
|
|
@@ -10,7 +10,7 @@ import 'node:child_process';
|
|
|
10
10
|
import { fileURLToPath } from 'node:url';
|
|
11
11
|
import fs__default from 'node:fs';
|
|
12
12
|
import { version } from 'vue';
|
|
13
|
-
import { g as generateCode } from './vue3-
|
|
13
|
+
import { g as generateCode } from './vue3-CnvFixWY.mjs';
|
|
14
14
|
|
|
15
15
|
function findDocument(haystack, needle) {
|
|
16
16
|
for (const document of haystack) {
|
|
@@ -84,7 +84,7 @@ function getOutputFilePath(outputFolder, fileInfo) {
|
|
|
84
84
|
return normalizePath(outputFolder, path, outputName);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
const url$1 = new URL("./format-code.worker-
|
|
87
|
+
const url$1 = new URL("./format-code.worker-Cs0VeEOX.mjs", import.meta.url);
|
|
88
88
|
const filePath$1 = fileURLToPath(url$1);
|
|
89
89
|
|
|
90
90
|
const formatCode = createSyncFn(filePath$1);
|
|
@@ -370,7 +370,7 @@ function transformCode(code, lang) {
|
|
|
370
370
|
return code;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
const url = new URL("./worker-
|
|
373
|
+
const url = new URL("./worker-DO8E5WXF.mjs", import.meta.url);
|
|
374
374
|
const filePath = fileURLToPath(url);
|
|
375
375
|
|
|
376
376
|
class SoftError extends Error {
|
|
@@ -1223,5 +1223,5 @@ function createMarkdownRenderer(options) {
|
|
|
1223
1223
|
};
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
|
-
export { SoftError as S, getFingerprint as a,
|
|
1227
|
-
//# sourceMappingURL=create-markdown-renderer-
|
|
1226
|
+
export { SoftError as S, getFingerprint as a, parseImport as b, createMarkdownRenderer as c, findTag as d, getOutputFilePath as e, formatCode as f, generateId as g, hasTag as h, isDocumentPage as i, htmlencode as j, filePath as k, generateExample as l, normalizePath as n, parseInfostring as p };
|
|
1227
|
+
//# sourceMappingURL=create-markdown-renderer-castrIfY.mjs.map
|