41
39

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

highlightコマンドでソースコードをハイライトしてKeynoteとかに貼り付ける

Posted at

==========

Keynoteなどでハイライトされたソースコードを入れるときに、highlightというコマンドをよく使っているのでメモです。

インストール (Homebrew)

インストール
brew install highlight

ハイライトしてクリップボードにコピー

highlight -O rtf -k 'Source Code Pro' -K 36 hello.c | pbcopy

貼り付ける

screenshot.png

よく使いそうなオプション

  • -O [フォーマット] 出力フォーマット (html, rtfなど)
  • -S [言語] 入力ファイルの言語を指定
  • -k [フォント名] フォント
  • -K [フォントサイズ] フォントサイズ
  • -s [テーマ名] テーマ

一覧系

  • -p 対応している言語の一覧
  • -w テーマ一覧

バージョン

  • highlight 3.18
41
39
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
41
39

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?