mulmocast 2.1.28 → 2.1.29
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/lib/cli/commands/tool/index.js +11 -1
- package/lib/cli/commands/tool/info/builder.d.ts +6 -0
- package/lib/cli/commands/tool/info/builder.js +13 -0
- package/lib/cli/commands/tool/info/handler.d.ts +6 -0
- package/lib/cli/commands/tool/info/handler.js +219 -0
- package/lib/cli/commands/tool/info/index.d.ts +4 -0
- package/lib/cli/commands/tool/info/index.js +4 -0
- package/lib/data/index.d.ts +1 -0
- package/lib/data/index.js +1 -0
- package/lib/data/markdownStyles.d.ts +14 -0
- package/lib/data/markdownStyles.js +998 -0
- package/lib/types/schema.d.ts +5 -0
- package/lib/types/schema.js +1 -0
- package/lib/utils/context.d.ts +2 -0
- package/lib/utils/html_render.js +2 -2
- package/lib/utils/image_plugins/markdown.js +6 -1
- package/package.json +1 -1
- package/scripts/test/test_all_markdown_styles.json +809 -0
- package/scripts/test/test_markdown_styles.json +53 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": { "version": "1.1" },
|
|
3
|
+
"lang": "en",
|
|
4
|
+
"title": "Markdown Styles Test",
|
|
5
|
+
"beats": [
|
|
6
|
+
{
|
|
7
|
+
"text": "Corporate Blue style",
|
|
8
|
+
"image": {
|
|
9
|
+
"type": "markdown",
|
|
10
|
+
"markdown": "# Corporate Blue\n\n## Business Presentation\n\n- Professional design\n- Clean gradients\n- Modern typography",
|
|
11
|
+
"style": "corporate-blue"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"text": "Cyber Neon style",
|
|
16
|
+
"image": {
|
|
17
|
+
"type": "markdown",
|
|
18
|
+
"markdown": "# Cyber Neon\n\n## Tech Presentation\n\n- Neon glow effects\n- Dark background\n- Futuristic feel",
|
|
19
|
+
"style": "cyber-neon"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"text": "Sakura Pink style",
|
|
24
|
+
"image": {
|
|
25
|
+
"type": "markdown",
|
|
26
|
+
"markdown": "# 桜ピンク\n\n## 日本風デザイン\n\n- 桜をイメージ\n- 柔らかいグラデーション\n- 和のテイスト",
|
|
27
|
+
"style": "sakura-pink"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"text": "Minimalist clean white style",
|
|
32
|
+
"image": {
|
|
33
|
+
"type": "markdown",
|
|
34
|
+
"markdown": "# Clean White\n\n## Minimalist Design\n\n- Simple and elegant\n- White space\n- Light typography",
|
|
35
|
+
"style": "clean-white"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"text": "Rainbow Gradient style",
|
|
40
|
+
"image": {
|
|
41
|
+
"type": "markdown",
|
|
42
|
+
"markdown": "# Rainbow Gradient\n\n## Creative Design\n\n- Bold colors\n- Eye-catching\n- Playful feel",
|
|
43
|
+
"style": "rainbow-gradient"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"canvasSize": { "width": 1920, "height": 1080 },
|
|
48
|
+
"speechParams": {
|
|
49
|
+
"speakers": {
|
|
50
|
+
"Presenter": { "provider": "openai", "voiceId": "alloy" }
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|