963 markdown files reformatted with the repository's pinned prettier so pnpm format:check covers the folded tree like every other repo file. The formatter's embedded-language pass also normalized code fences (TS semicolons, closed HTML tags in examples, lowercased CSS hex colors, one renumbered list that skipped an index). Alphanumeric token deltas vs the fold commit were audited file-by-file; all are formatter-equivalent markup normalizations plus the four sanitized skills.
726 B
726 B
name, description
| name | description |
|---|---|
| importing-slides | Split presentations into multiple files for reusability |
Importing Slides
Split presentations into multiple files for reusability.
Basic Import
# Title
This is a normal page
---
## src: ./pages/toc.md
<!-- Content here is ignored -->
---
# Page 4
Another normal page
Import Specific Slides
Use hash to select slides:
---
src: ./another-presentation.md#2,5-7
---
Imports slides 2, 5, 6, and 7.
Reuse Slides
Import the same file multiple times:
---
src: ./pages/toc.md
---
<!-- later... -->
---
## src: ./pages/toc.md
Frontmatter Priority
Main entry frontmatter overrides imported file frontmatter for duplicate keys.