Add markdown-mode and pandoc-mode from crafted config
This commit is contained in:
parent
5fc9903bac
commit
d2c214051d
|
@ -17,3 +17,21 @@
|
||||||
(doc-view-scale-internally t)
|
(doc-view-scale-internally t)
|
||||||
(doc-view-image-width 850))
|
(doc-view-image-width 850))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
* TODO LaTeX
|
||||||
|
* Markdown
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package markdown-mode
|
||||||
|
:ensure t
|
||||||
|
:diminish
|
||||||
|
:custom
|
||||||
|
(markdown-enable-math t)
|
||||||
|
(markdown-enable-html t))
|
||||||
|
#+end_src
|
||||||
|
* Pandoc
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package pandoc-mode
|
||||||
|
:ensure t
|
||||||
|
:diminish
|
||||||
|
:after (markdown-mode)
|
||||||
|
:hook (markdown-mode . conditionally-turn-on-pandoc))
|
||||||
|
#+end_src
|
||||||
|
|
Loading…
Reference in a new issue