Skip to content

Instantly share code, notes, and snippets.

@secfigo
Forked from jimbojsb/gist:1630790
Created July 24, 2021 00:42
Show Gist options
  • Save secfigo/2c2ec882c5b8d6054ed2bd3bf940edb1 to your computer and use it in GitHub Desktop.
Save secfigo/2c2ec882c5b8d6054ed2bd3bf940edb1 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:

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-

@secfigo
Copy link
Author

secfigo commented Jul 24, 2021

pbpaste | highlight -O rtf --line-numbers --font-size 24 --font Courier --style solarized-dark -W -J 50 -j 3 --syntax ruby | pbcopy

@secfigo
Copy link
Author

secfigo commented Jul 24, 2021

pbpaste | python -m json.tool | highlight --syntax=json -O rtf | pbcopy

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