Skip to content

Instantly share code, notes, and snippets.

@ept
Last active November 4, 2022 08:38
Show Gist options
  • Save ept/4475995 to your computer and use it in GitHub Desktop.
Save ept/4475995 to your computer and use it in GitHub Desktop.
Syntax highlighting code for PowerPoint (Mac OS)

How to add syntax-highlighted code to PowerPoint slides (Mac OS)

  1. pygmentize -f rtf FILE | pbcopy
  2. Paste into TextEdit (in rich text mode: Format → Make Rich Text before pasting), and copy to clipboard again.
  3. In PowerPoint, Edit → Paste Special… → Styled Text.

(Pasting RTF directly into PowerPoint doesn't work correctly, at least with PowerPoint 2008 — it extends colour spans longer than it should, and sometimes removes line breaks. Going via TextEdit seems to solve the problem.)

@benders
Copy link

benders commented May 22, 2015

Great tip! Seemingly obvious in hindsight, yet something I had not considered at all before.

For future readers, note that you can also read from the clipboard if you don't want to extract your snippets out to files: pbpaste | pygmentize -l ruby -f rtf | pbcopy. In this scenario the lexer (-l) should be specified, since there will be no filename to guess from.

@gernotstarke
Copy link

WHOW... this definitely makes my day. Need to prepare dozens of slides with (cucumber) code - your tipp saved hours! Thanx.

@Qi-Zhan
Copy link

Qi-Zhan commented Nov 4, 2022

It really helps me a lot!
and for current PPT you could skip step 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment