Skip to content

Instantly share code, notes, and snippets.

@c0diq
Created November 30, 2016 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c0diq/ab126675518fdf9add84146c953cbc86 to your computer and use it in GitHub Desktop.
Save c0diq/ab126675518fdf9add84146c953cbc86 to your computer and use it in GitHub Desktop.
Highlight code in Keynote
function light() {
if [ -z "$2" ]
then src="pbpaste"
else
src="cat $2"
fi
$src | highlight -O rtf --syntax $1 --font Menlo --style solarized-dark --font-size 24 | pbcopy
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment