remark-mdat 1.2.0 → 1.2.2
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 +1670 -1662
- package/license.txt +1 -1
- package/package.json +7 -10
- package/readme.md +1 -0
package/license.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "remark-mdat",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "A remark plugin implementing the Markdown Autophagic Template (MDAT) system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mdat",
|
|
@@ -35,35 +35,32 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@types/mdast": "^4.0.4",
|
|
38
|
-
"@types/node": "^20.19.
|
|
38
|
+
"@types/node": "^20.19.30",
|
|
39
39
|
"@types/unist": "^3.0.3",
|
|
40
40
|
"picocolors": "^1.1.1",
|
|
41
|
-
"type-fest": "^5.
|
|
41
|
+
"type-fest": "^5.4.1",
|
|
42
42
|
"unified": "^11.0.5",
|
|
43
43
|
"vfile": "^6.0.3",
|
|
44
44
|
"zod": "^3.25.76"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@kitschpatrol/shared-config": "^5.
|
|
48
|
-
"bumpp": "^10.
|
|
47
|
+
"@kitschpatrol/shared-config": "^5.12.0",
|
|
48
|
+
"bumpp": "^10.4.0",
|
|
49
49
|
"cli-table3": "^0.6.5",
|
|
50
50
|
"deepmerge-ts": "^7.1.5",
|
|
51
51
|
"hast-util-from-html": "^2.0.3",
|
|
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.19.0",
|
|
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.17"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20.19.0"
|
|
63
63
|
},
|
|
64
|
-
"publishConfig": {
|
|
65
|
-
"access": "public"
|
|
66
|
-
},
|
|
67
64
|
"scripts": {
|
|
68
65
|
"build": "tsdown --no-fixed-extension --dts false && tsc -p tsconfig.build.json",
|
|
69
66
|
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
|
package/readme.md
CHANGED
|
@@ -176,6 +176,7 @@ The remark-mdat plugin chains these utilities together to accommodate the typica
|
|
|
176
176
|
_Exported as `mdat`_
|
|
177
177
|
|
|
178
178
|
Utilities wrapped by `mdast-util-mdat`:
|
|
179
|
+
|
|
179
180
|
- [**`mdast-util-mdat-split`**](./src/lib/mdast-utils/mdast-util-mdat-split.ts)
|
|
180
181
|
|
|
181
182
|
Transformer function that allows inline mdat expansion comments.
|