@forsakringskassan/docs-generator 3.0.2 → 3.0.4
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/README.md +2 -0
- package/dist/{create-markdown-renderer-C-rQVf_R.mjs → create-markdown-renderer-cnbxjnoS.mjs} +5 -5
- package/dist/{create-markdown-renderer-C-rQVf_R.mjs.map → create-markdown-renderer-cnbxjnoS.mjs.map} +1 -1
- package/dist/{format-code.worker-BwtL4Ldq.mjs → format-code.worker-Xf0JB1yl.mjs} +2 -2
- package/dist/{format-code.worker-BwtL4Ldq.mjs.map → format-code.worker-Xf0JB1yl.mjs.map} +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/dist/markdown.mjs +2 -2
- package/dist/processors/selectable-version.mjs +5 -2
- package/dist/runtime.mjs +1 -1
- package/dist/style/core.css +5 -5
- package/dist/style/index.css +7 -7
- package/dist/style/site.css +2 -2
- package/dist/{vendor-CyiP4ufo.mjs → vendor-s-84ehgc.mjs} +280 -152
- package/dist/{vendor-CyiP4ufo.mjs.map → vendor-s-84ehgc.mjs.map} +1 -1
- package/dist/{worker-CpM7V-Ue.mjs → worker-CVWE4d_P.mjs} +3 -3
- package/dist/{worker-CpM7V-Ue.mjs.map → worker-CVWE4d_P.mjs.map} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -219,6 +219,8 @@ The following statuses are recognized:
|
|
|
219
219
|
- `Draft` (deprecated alias for `Preliminär`)
|
|
220
220
|
- `Beta` (deprecated alias for `Preliminär`)
|
|
221
221
|
|
|
222
|
+
<!-- html-validate-disable-next no-dup-id -- collides with hard coded title in base template -->
|
|
223
|
+
|
|
222
224
|
#### `title`
|
|
223
225
|
|
|
224
226
|
Document title used for `<title>` and `<nav>`
|
package/dist/{create-markdown-renderer-C-rQVf_R.mjs → create-markdown-renderer-cnbxjnoS.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 {
|
|
5
|
+
import { c as createSyncFn, d as dedent, H as HighlightJS, b as createTwoFilesPatch, M as MarkdownIt, e as deflist_plugin } from './vendor-s-84ehgc.mjs';
|
|
6
6
|
import path from 'node:path/posix';
|
|
7
7
|
import path__default from 'node:path';
|
|
8
8
|
import crypto from 'node:crypto';
|
|
@@ -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-Xf0JB1yl.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-CVWE4d_P.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,
|
|
1227
|
-
//# sourceMappingURL=create-markdown-renderer-
|
|
1226
|
+
export { SoftError as S, getFingerprint as a, findTag as b, createMarkdownRenderer as c, getOutputFilePath as d, htmlencode as e, formatCode as f, generateId as g, hasTag as h, isDocumentPage as i, filePath as j, generateExample as k, normalizePath as n, parseInfostring as p };
|
|
1227
|
+
//# sourceMappingURL=create-markdown-renderer-cnbxjnoS.mjs.map
|