Creating Powerpoint presentations from Markdown using Pandoc

I had missed this. Creating a presentation from a markdown file is now as simple as:

pandoc input.md -o output.pptx --reference-doc=ref.pptx

This takes whatever is in ref.pptx as a template, so allows you to use specific themes.

Leave a comment