Skip to content

Instantly share code, notes, and snippets.

@mplacona
Forked from jimbojsb/gist:1630790
Last active October 27, 2023 08:22
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mplacona/614ffdacc7da223f8a6121cd4b7a2eee to your computer and use it in GitHub Desktop.
Save mplacona/614ffdacc7da223f8a6121cd4b7a2eee to your computer and use it in GitHub Desktop.
Code highlighting for Keynote presentations

Step 0:

Get Homebrew installed on your mac if you don't already have it

Step 1:

Install highlight. "brew install highlight". (This brings down Lua and Boost as well)

Step 2:

Copy your source code to the clipboard

Step 3:

Highlight your source. "pbpaste | highlight -O rtf | pbcopy". This will highlight the source code in RTF format and copy the result of that operation to your Mac's clipboard.

Step 4:

Paste into your slide in Keynote. Keynote will create a new text box with your highlighted code. You can adjust the width as needed, and adjust the font size with cmd+ and cmd-

Bonus:

Create your highlighted text using a specific font, font size, (language)[http://www.andre-simon.de/doku/highlight/en/langs.php] and (style)[http://www.andre-simon.de/doku/highlight/en/theme-samples.php].

pbpaste | highlight --syntax=java --font-size 16 --font=menlo --style=solarized-dark -O rtf | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment