手もとでGFM (GitHub Flavored Markdown) ファイルをHTMLファイルに変換する簡単なRubyスクリプトgfm2html.rbを下に置きました。 github-markdownを用いています。 google-code-prettifyを使えばsyntax highlightができることが特徴です。 簡単なCSSファイルを用意して使います。例としてstyle.cssが下に置いてあります。
この文章は Gist https://gist.github.com/t-nissie/c415b7da3a694e82d6b5 に置いてあります。
git clone https://gist.github.com/c415b7da3a694e82d6b5.git gfm2html
でクローンできます。
$ gfm2html.rb --help
Usage: ./gfm2html.rb [options] [filename]
-s, --style STYLESHEET_FILENAME Specify stylesheet filename.
-n, --name YOUR_NAME Specify your name.
-j JAVASCRIPT_FILENAME, Specify JavaScript filename.
--javascript
-l, --language LANGUAGE Specify natural language. Its defalt is 'en'.
-r, --readme Readme mode.
-g, --gfm GFM mode (default).
-p, --plaintext Plaintext mode.
-h, --help Show this message.
$ ./gfm2html.rb -l ja -n 'Takeshi Nishimatsu' -s style.css -j https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js gfm2html.md
まず.emacs
に
(load "markdown-mode")
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.md\\'" . gfm-mode))
(add-hook 'gfm-mode-hook
(function (lambda ()
(local-set-key "\C-c\C-c\C-c" 'compile))))
などと書いておきます。
さらに次のようなMakefile
を用意します。
# -*-Makefile-*-
##
all: gfm2html.html
%.html: %.md
gfm2html.rb --readme -l ja -n 'Takeshi Nishimatsu' \
-s style.css -j https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js $< > $@ && \
osascript -e 'tell application "Safari"' -e 'do JavaScript "location.reload(true);" in document 1' -e 'end tell'
clean:
rm -f *.html
例えばこのgfm2html.md
を編集しながらC-c C-c C-c
してCompile command: make
すると、GFM→HTMLの変換が成功すれば、Safariがリロードしてくれます。
Copyright © 2015, 2017 Takeshi Nishimatsu
gfm2html.rb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. You can copy, modify and redistribute gfm2html.rb, but only under the conditions described in the GNU General Public License version 3 (the "GPLv3").