19
9

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 3 years have passed since last update.

Terminalでmarkdownをプレビュー

Last updated at Posted at 2021-04-23

CLIって美しいですよね。

Terminal用マークダウンビューアーのglowをinstallして試してみます。

$ brew install glow

プレビュー

ファイル名で開く

シンプルにglow {FILE_NAME}でok

$ glow tmux_cheat_sheet.md

image.png

100倍読みやすくなってる。すばらしい。

ちなみにglow単体で実行すればmdファイル選べるをTUIが表示される。基本はCLIで使うのでこれはあんまり使っていない

URLで開く

$ glow https://raw.githubusercontent.com/rust-lang/rust/master/README.md

image.png

GitHub repoのREADME.mdを開く

↑GitHub repoを指定するだけでよかった

$ glow https://github.com/rust-lang/rust

カスタマイズ

気になったところを修正します。長いファイルだとcatばりに出力されてしまうのが厳しい
-pオプションでpagerで開けるようですがデフォルトにしたい

以下でconfigファイルを編集($EDITORが設定されてる必要あり)

$ glow config

image.png
色々ありますが今回はデフォルトでpagerを使いたいのでpager: trueに変更

image.png
lessで表示されました!$PAGER設定すれば好きなpagerでひらけます

まとめ

markdownの読みやすさは異常

19
9
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
19
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?