Skip to content

Instantly share code, notes, and snippets.

@ashrithr
Forked from jimbojsb/gist:1630790
Last active December 28, 2015 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ashrithr/7425121 to your computer and use it in GitHub Desktop.
Save ashrithr/7425121 to your computer and use it in GitHub Desktop.
Syntax highlight in Keynote

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:

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

Step 3:

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-

Notes:

  • To get the available styles do find /usr/local/Cellar -name "*.theme" -type f

    highlight --syntax=java -O rtf tmp.java --style vampire | pbcopy
    
  • pbpaste | highlight --syntax=java -O rtf --style moria | pbcopy

  • highlight -O rtf /tmp/test.java --line-numbers --font-size 24 --font Inconsolata --style solarized-light -W -j 3 --src-lang java | pbcopy

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