Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 1.19 KB

File metadata and controls

48 lines (38 loc) · 1.19 KB

PptxGenJS Documentation

Local copy of PptxGenJS documentation for quick reference while building slide templates.

Structure

docs/pptxgenjs/
├── README.md (this file)
├── api/
│   ├── text.md
│   ├── tables.md
│   ├── shapes.md
│   ├── images.md
│   ├── charts.md
│   └── media.md
├── guides/
│   ├── quick-start.md ✓
│   ├── installation.md
│   └── examples.md
└── examples/
    ├── basic-examples.md
    └── advanced-examples.md

How to Add Documentation

  1. Copy HTML content from PptxGenJS docs site
  2. Save to a temp file: temp.html
  3. Convert to markdown: cat temp.html | node scripts/html-to-markdown.js > docs/pptxgenjs/[section]/[filename].md
  4. Clean up the generated markdown as needed

Quick Reference

Usage

Search through docs using grep:

# Find table-related documentation
grep -r "table" docs/pptxgenjs/

# Find specific properties
grep -r "fontSize\|fontFace" docs/pptxgenjs/