- 修正2014-08-03:Path
(MacOSX10.9)
rst2html-2.7.py をインストール
sudo port install py27-docutils
Marked の設定
Prefarence -> Behavior
Custom Processor の
Custom Markdown Processor にチェック入れて
Path を
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/rst2html.py
そんで hoge.rst とか読み込むと表示される。
追記:エディタ指定
Prefarence -> Window
Edit with
のところで Emacs.app とかエディタを指定すると、Marked.app から cmd+e でそのエディタで編集できる。
追記 Emacs rst-mode から開く
init.el
(defun show-in-marked-for-mac() (interactive) (shell-command (concat "open -a Marked " buffer-file-name)) ) (add-hook 'rst-mode-hook (lambda () (define-key rst-mode-map (kbd "s-p") 'show-in-marked-for-mac) ))