@tycoworks/tycoslide 0.15.0 → 0.15.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tycoworks/tycoslide",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "Create editable, on-brand PowerPoint slides from markdown, using your existing .pptx templates.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -73,8 +73,11 @@ layout: Quote dark
73
73
  quote: Great products are built by great teams.
74
74
  attributionName: Jane Smith
75
75
  attributionTitle: CEO, Acme Corp
76
- logo: assets/clients/acme.png
77
76
  ---
77
+
78
+ ::logo::
79
+
80
+ ![]($logos.acme) # ← an image slot: a catalog asset, or a file path relative to the deck
78
81
  ```
79
82
 
80
83
  A text shape that holds several lines (e.g. an attribution with a name over a title) surfaces as one key per line -- fill each as its own scalar (`attributionName`, `attributionTitle` above), never as a YAML list.
@@ -159,7 +162,7 @@ Build the deck again ([Build](#build)) and read the output carefully. Common err
159
162
  |-------|-----|
160
163
  | `unknown layout "xyz"` | Check layout names in `manifest.json` |
161
164
  | A parameter or slot didn't fill | Use the key names the layout declares -- parameters in frontmatter, slots as body regions |
162
- | An image didn't swap / placeholder remains | Write a `::key::` region using the image slot's key, containing `![]($category.name)` from `assets.json` |
165
+ | An image didn't swap / placeholder remains | Write a `::key::` region using the image slot's key, containing `![]($category.name)` from `assets.json` or `![](path)` relative to the deck |
163
166
  | YAML parse error | Fix the YAML syntax in the slide's frontmatter |
164
167
  | `Skipped setting relation target` | The asset image couldn't be placed; check the path and file |
165
168
  | `forbidden style directive` | Remove `style`, `classDef`, `linkStyle`, or `%%{init}` from your mermaid block -- use `class` for grouping instead |