yumiamd 0.1.9 → 0.1.13
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 +19 -7
- package/dist/bin.js +1 -1
- package/dist/{chunk-F3CX7UG6.js → chunk-6GEDN7OB.js} +1524 -25
- package/dist/index.d.ts +17 -2
- package/dist/index.js +7 -1
- package/package.json +12 -9
package/README.md
CHANGED
|
@@ -49,23 +49,35 @@ pnpm add yumiamd
|
|
|
49
49
|
Once installed globally or locally, the `yumia` / `yumiamd` commands are available in your terminal:
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
# Initialize a new presentation template
|
|
53
|
-
yumia init my-presentation
|
|
52
|
+
# Initialize a new presentation template (supports --theme and custom color overrides)
|
|
53
|
+
yumia init my-presentation --theme cyberpunk --primary "#FF2E88"
|
|
54
|
+
|
|
55
|
+
# Start instant live-reload dev server with HTML preview (zero config!)
|
|
56
|
+
yumia dev presentation.yumia.md --open
|
|
57
|
+
|
|
58
|
+
# Compile to native editable PowerPoint (.pptx)
|
|
59
|
+
yumia build presentation.yumia.md --out dist/presentation.pptx
|
|
60
|
+
|
|
61
|
+
# Compile to crisp vector PDF document (.pdf)
|
|
62
|
+
yumia build presentation.yumia.md --format pdf --out dist/presentation.pdf
|
|
63
|
+
|
|
64
|
+
# Compile to standalone interactive HTML5 presentation deck (.html)
|
|
65
|
+
yumia build presentation.yumia.md --format html --out dist/presentation.html
|
|
66
|
+
|
|
67
|
+
# Watch presentation file and recompile automatically on save
|
|
68
|
+
yumia watch presentation.yumia.md --format pdf
|
|
54
69
|
|
|
55
70
|
# Validate markdown syntax and AST structure (supports --json for CI & AI agents)
|
|
56
71
|
yumia validate presentation.yumia.md --json
|
|
57
72
|
|
|
58
|
-
# Lint presentation for
|
|
59
|
-
yumia lint presentation.yumia.md --
|
|
73
|
+
# Lint presentation for overflow, high density, and layout issues
|
|
74
|
+
yumia lint presentation.yumia.md --strict
|
|
60
75
|
|
|
61
76
|
# Inspect parsed AST and computed layout bounding boxes
|
|
62
77
|
yumia inspect presentation.yumia.md --layout
|
|
63
78
|
|
|
64
79
|
# Export machine-readable JSON schema for LLMs & AI prompt generation
|
|
65
80
|
yumia schema
|
|
66
|
-
|
|
67
|
-
# Compile to native editable PowerPoint (.pptx)
|
|
68
|
-
yumia build presentation.yumia.md --out dist/presentation.pptx
|
|
69
81
|
```
|
|
70
82
|
|
|
71
83
|
---
|