orz-markdown 1.6.1 → 1.6.3
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 +7 -0
- package/orz-markdown-skills/SKILL.md +1 -1
- package/package.json +7 -12
package/README.md
CHANGED
|
@@ -6,6 +6,13 @@ A deeply customized markdown-it parser configured with several official plugins
|
|
|
6
6
|
|
|
7
7
|
Rendered HTML is intended to live inside a `.markdown-body` container and be paired with one of the bundled themes.
|
|
8
8
|
|
|
9
|
+
## Showcase
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
The same portable file is both the rendered document and its Markdown editor. See the full
|
|
14
|
+
[orz-markdown family](https://markdown.orz.how/family.html).
|
|
15
|
+
|
|
9
16
|
## Citation
|
|
10
17
|
|
|
11
18
|
If you use or cite the orz-markdown website or editable document family, please cite the archived release:
|
|
@@ -83,7 +83,7 @@ The runtime also provides **copy-as-Markdown**: with it loaded, copying a select
|
|
|
83
83
|
|
|
84
84
|
### Portable document metadata
|
|
85
85
|
|
|
86
|
-
The self-
|
|
86
|
+
The single-file, self-editing family shares `DocMeta` from `orz-markdown/doc-meta`:
|
|
87
87
|
`title`, `author`, `description`, `license` (`spdx`, `name`, `url`), `source`,
|
|
88
88
|
`date`, and `keywords`. In mdhtml and paged source, authors may provide a
|
|
89
89
|
`{{nyml kind: meta ...}}` block. The builder consumes that block and emits
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orz-markdown",
|
|
3
|
-
"version": "1.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.6.3",
|
|
4
|
+
"description": "Markdown renderer and single-file, self-editing HTML document family with math, diagrams, themes, and source-aware copy.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
"build": "tsc",
|
|
21
21
|
"test": "vitest run",
|
|
22
22
|
"test:watch": "vitest",
|
|
23
|
+
"check:starters": "tsx scripts/check-site-starters.ts",
|
|
24
|
+
"check:site": "npm run check:starters && tsx scripts/check-site-discovery.ts",
|
|
25
|
+
"visibility:baseline": "tsx scripts/visibility-baseline.ts",
|
|
23
26
|
"render": "tsx scripts/render.ts",
|
|
24
27
|
"prepublishOnly": "npm run build && npm run test"
|
|
25
28
|
},
|
|
@@ -33,15 +36,7 @@
|
|
|
33
36
|
"smiles",
|
|
34
37
|
"qrcode",
|
|
35
38
|
"toc",
|
|
36
|
-
"footnote"
|
|
37
|
-
"agent-skills",
|
|
38
|
-
"claude",
|
|
39
|
-
"claude-code",
|
|
40
|
-
"ai-agent",
|
|
41
|
-
"llm",
|
|
42
|
-
"markdown-parser",
|
|
43
|
-
"math",
|
|
44
|
-
"diagrams"
|
|
39
|
+
"footnote"
|
|
45
40
|
],
|
|
46
41
|
"author": "Yu Wang <yuwang@orz.how>",
|
|
47
42
|
"license": "MIT",
|
|
@@ -49,7 +44,7 @@
|
|
|
49
44
|
"type": "git",
|
|
50
45
|
"url": "git+https://github.com/wangyu16/orz-markdown.git"
|
|
51
46
|
},
|
|
52
|
-
"homepage": "https://
|
|
47
|
+
"homepage": "https://markdown.orz.how/",
|
|
53
48
|
"bugs": "https://github.com/wangyu16/orz-markdown/issues",
|
|
54
49
|
"dependencies": {
|
|
55
50
|
"@traptitech/markdown-it-katex": "^3.6.0",
|