Last active
August 23, 2017 06:15
-
-
Save kaznum/eb1d27ee0eac7da4126724d21c1dd165 to your computer and use it in GitHub Desktop.
Emacsのmarkdownモードのpreviewをgithub flavorにする
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; インターネット上には色々な記述があるが、結局のところ markdown コマンドと同様に、 | |
;; 標準入力からMarkdown形式の文書が入力され、それが成型されたのち標準出力に出力されればよい。 | |
;; | |
;; M-m m c p でブラウザが起動。 | |
;; 事前に `brew install grip`しておく | |
;; --gfm をつけると良いという記述があったが、今のgrip(4.3.2)にはこのオプションは存在しなかった。 | |
(setq markdown-command "grip --export - /dev/stdout") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment