Skip to content

Instantly share code, notes, and snippets.

@imarko
Last active November 13, 2022 18:11
Show Gist options
  • Save imarko/d3294379333f8e4b9369e3462d6689d6 to your computer and use it in GitHub Desktop.
Save imarko/d3294379333f8e4b9369e3462d6689d6 to your computer and use it in GitHub Desktop.
(define-derived-mode
pandoc-view-mode
org-mode
"pandoc-view-mode"
"View pandoc converted files in org-mode."
(erase-buffer)
(save-excursion
(call-process "pandoc" nil t nil "-torg" (buffer-file-name)))
(not-modified)
(read-only-mode t)
(view-mode t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment