convert-contents
Convert Markdown content to PowerPoint (PPTX) format, supporting custom templates for branding, diagrams (mermaid, plantuml, graphviz), and both direct text or file inputs.
Instructions
Converts Markdown content to PowerPoint (PPTX) format.
🚨 REQUIREMENTS:
- Input: Only Markdown format is supported
- Output: Only PPTX format is supported
- File Path: Complete output path with filename and .pptx extension is required
✅ Usage Example: 'Convert this markdown to PowerPoint and save as /presentations/demo.pptx'
🎨 PPTX STYLING:
- Use template parameter to apply custom PowerPoint templates
- Create templates with your branding, fonts, and slide layouts
- Example: 'Convert markdown to PPTX using /templates/theme.pptx as template and save as /presentations/pitch.pptx'
➡️ Diagram Support:
- Diagram using mermaid, plantuml, graphviz is supported by default. Referencing external resource in plantuml is also supported.
- Example:
📋 Creating Reference Documents:
- Generate PPTX template: pandoc -o template.pptx --print-default-data-file reference.pptx
- Customize in PowerPoint: fonts, colors, slide layouts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contents | No | Markdown content to be converted (required if input_file not provided) | |
input_file | No | Complete path to Markdown input file (e.g., '/path/to/input.md') | |
output_file | No | Complete path where to save the PPTX output including filename and .pptx extension (required) | |
template | No | Path to a template PPTX document to use for styling |