feat(exports): Add pandoc exporting to org-mode and markdown-mode

This commit is contained in:
2020-03-17 01:55:32 +00:00
parent faa82907d9
commit 07521a1e71
5 changed files with 53 additions and 9 deletions

View File

@@ -31,6 +31,12 @@
:hook
(markdown-mode . siren-markdown-mode-setup)
:custom
(markdown-command "pandoc -f gfm -t html5")
:custom-face
(markdown-code-face ((t nil)))
:init
(defun siren-markdown-mode-setup ()
(setq markdown-asymmetric-header t
@@ -42,13 +48,7 @@
(prettier-js-mode)
(flyspell-mode)
(smartparens-mode +1)
(subword-mode))
:custom-face
(markdown-code-face ((t nil)))
:custom
(markdown-command "redcarpet"))
(subword-mode)))
(provide 'siren-markdown)
;;; siren-markdown.el ends here