diff options
author | Guangxiong Lin <[email protected]> | 2022-03-02 19:29:47 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-03-02 19:29:47 +0800 |
commit | a54d51b5444af1063a11b540d7d880415d6b1890 (patch) | |
tree | 2ac064c1e52054ba5a7e9256998adf155eb805ea /.emacs.d | |
parent | 5dac5e172efbb478cfbc7c57095be527065758f1 (diff) | |
download | dotfiles-a54d51b5444af1063a11b540d7d880415d6b1890.tar.gz dotfiles-a54d51b5444af1063a11b540d7d880415d6b1890.tar.bz2 dotfiles-a54d51b5444af1063a11b540d7d880415d6b1890.zip |
Use pandoc to preview the markdown file
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-lang.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-lang.el b/.emacs.d/lisp/init-lang.el index 514cd0f..cc5b105 100644 --- a/.emacs.d/lisp/init-lang.el +++ b/.emacs.d/lisp/init-lang.el @@ -12,7 +12,7 @@ :init (evil-define-key 'normal markdown-mode-map (kbd "<RET>") 'markdown-follow-link-at-point) - (setq markdown-command "multimarkdown")) + (setq markdown-command '("pandoc" "--from=markdown" "--to=html5"))) (use-package go-mode :ensure t |