remark-mdat 1.1.2 → 1.2.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/index.js +1185 -4
- package/dist/lib/mdast-utils/mdast-util-mdat-check.d.ts +1 -1
- package/dist/lib/mdast-utils/mdast-util-mdat-expand.d.ts +1 -1
- package/dist/lib/mdast-utils/mdast-util-mdat.d.ts +1 -1
- package/dist/lib/remark-mdat.d.ts +3 -3
- package/package.json +6 -6
- package/readme.md +1 -1
- package/dist/.DS_Store +0 -0
|
@@ -2,7 +2,7 @@ import type { Root } from 'mdast';
|
|
|
2
2
|
import type { VFile } from 'vfile';
|
|
3
3
|
import type { Rules } from '../mdat/rules';
|
|
4
4
|
export type Options = {
|
|
5
|
-
addMetaComment: boolean;
|
|
5
|
+
addMetaComment: boolean | string;
|
|
6
6
|
closingPrefix: string;
|
|
7
7
|
keywordPrefix: string;
|
|
8
8
|
metaCommentIdentifier: string;
|
|
@@ -2,7 +2,7 @@ import type { Root } from 'mdast';
|
|
|
2
2
|
import type { VFile } from 'vfile';
|
|
3
3
|
import type { Rules } from '../mdat/rules';
|
|
4
4
|
export type Options = {
|
|
5
|
-
addMetaComment: boolean;
|
|
5
|
+
addMetaComment: boolean | string;
|
|
6
6
|
closingPrefix: string;
|
|
7
7
|
keywordPrefix: string;
|
|
8
8
|
metaCommentIdentifier: string;
|
|
@@ -2,7 +2,7 @@ import type { Root } from 'mdast';
|
|
|
2
2
|
import type { VFile } from 'vfile';
|
|
3
3
|
import type { Rules } from '../mdat/rules';
|
|
4
4
|
export type Options = {
|
|
5
|
-
addMetaComment: boolean;
|
|
5
|
+
addMetaComment: boolean | string;
|
|
6
6
|
closingPrefix: string;
|
|
7
7
|
keywordPrefix: string;
|
|
8
8
|
metaCommentIdentifier: string;
|
|
@@ -4,7 +4,7 @@ import { z } from 'zod';
|
|
|
4
4
|
import type { Options as MdatOptions } from './mdast-utils/mdast-util-mdat';
|
|
5
5
|
export type Options = Partial<MdatOptions>;
|
|
6
6
|
export declare const optionsSchema: z.ZodObject<{
|
|
7
|
-
addMetaComment: z.ZodOptional<z.ZodBoolean
|
|
7
|
+
addMetaComment: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
8
8
|
closingPrefix: z.ZodOptional<z.ZodString>;
|
|
9
9
|
keywordPrefix: z.ZodOptional<z.ZodString>;
|
|
10
10
|
metaCommentIdentifier: z.ZodOptional<z.ZodString>;
|
|
@@ -14,13 +14,13 @@ export declare const optionsSchema: z.ZodObject<{
|
|
|
14
14
|
keywordPrefix?: string | undefined;
|
|
15
15
|
metaCommentIdentifier?: string | undefined;
|
|
16
16
|
rules?: Record<string, any> | undefined;
|
|
17
|
-
addMetaComment?: boolean | undefined;
|
|
17
|
+
addMetaComment?: string | boolean | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
closingPrefix?: string | undefined;
|
|
20
20
|
keywordPrefix?: string | undefined;
|
|
21
21
|
metaCommentIdentifier?: string | undefined;
|
|
22
22
|
rules?: Record<string, any> | undefined;
|
|
23
|
-
addMetaComment?: boolean | undefined;
|
|
23
|
+
addMetaComment?: string | boolean | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
/**
|
|
26
26
|
* A remark plugin that expands HTML comments in Markdown files.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remark-mdat",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A remark plugin implementing the Markdown Autophagic Template (MDAT) system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mdat",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@types/mdast": "^4.0.4",
|
|
38
|
-
"@types/node": "^20.19.
|
|
38
|
+
"@types/node": "^20.19.25",
|
|
39
39
|
"@types/unist": "^3.0.3",
|
|
40
40
|
"picocolors": "^1.1.1",
|
|
41
41
|
"type-fest": "^5.2.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"zod": "^3.25.76"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@kitschpatrol/shared-config": "^5.
|
|
47
|
+
"@kitschpatrol/shared-config": "^5.8.3",
|
|
48
48
|
"bumpp": "^10.3.1",
|
|
49
49
|
"cli-table3": "^0.6.5",
|
|
50
50
|
"deepmerge-ts": "^7.1.5",
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"json5": "^2.2.3",
|
|
53
53
|
"remark": "^15.0.1",
|
|
54
54
|
"remark-gfm": "^4.0.1",
|
|
55
|
-
"tsdown": "^0.
|
|
55
|
+
"tsdown": "^0.16.3",
|
|
56
56
|
"typescript": "~5.9.3",
|
|
57
57
|
"unist-util-visit": "^5.0.0",
|
|
58
58
|
"vfile-message": "^4.0.3",
|
|
59
|
-
"vitest": "^4.0.
|
|
59
|
+
"vitest": "^4.0.8"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20.19.0"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
|
-
"build": "tsdown --dts false && tsc -p tsconfig.build.json",
|
|
68
|
+
"build": "tsdown --no-fixed-extension --dts false && tsc -p tsconfig.build.json",
|
|
69
69
|
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
|
|
70
70
|
"dev": "pnpm run test",
|
|
71
71
|
"fix": "ksc fix",
|
package/readme.md
CHANGED
|
@@ -101,7 +101,7 @@ The plugin accepts an optional options object which exposes some configuration o
|
|
|
101
101
|
|
|
102
102
|
```ts
|
|
103
103
|
export type Options = {
|
|
104
|
-
addMetaComment?: boolean // Default: false
|
|
104
|
+
addMetaComment?: boolean | string // Default: false
|
|
105
105
|
closingPrefix?: string // Default: '/',
|
|
106
106
|
keywordPrefix?: string // Default: '',
|
|
107
107
|
metaCommentIdentifier?: string // Default: '+',
|
package/dist/.DS_Store
DELETED
|
Binary file
|