Local copy of PptxGenJS documentation for quick reference while building slide templates.
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
- Copy HTML content from PptxGenJS docs site
- Save to a temp file:
temp.html - Convert to markdown:
cat temp.html | node scripts/html-to-markdown.js > docs/pptxgenjs/[section]/[filename].md - Clean up the generated markdown as needed
- Official Docs: https://gitbrent.github.io/PptxGenJS/
- GitHub: https://github.com/gitbrent/PptxGenJS
- Our complete reference:
pptxgenjs-complete-docs.md
Search through docs using grep:
# Find table-related documentation
grep -r "table" docs/pptxgenjs/
# Find specific properties
grep -r "fontSize\|fontFace" docs/pptxgenjs/