emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit b1193b471218c85d72a402fbca92a9df0688375c
parent 7b450f8deb909b6c6058ab7927b363d4c95db26f
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat, 28 Jul 2018 19:57:49 -0400

Add ox-pandoc backend for org export.

Diffstat:
MREADME.org | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/README.org b/README.org
@@ -8,8 +8,8 @@ in an hopefully understandable manner. I went from using multiple
 =.org= files back to a single one because =org-mode= is fantastic and
 my config is not too complicated for a single file to handle (yet).
 
-| Module            | Function                     |
-|-------------------+------------------------------|
+| Module        | Function                     |
+|---------------+------------------------------|
 | [[Packages]]      | Package management.          |
 | [[Aesthetics]]    | UI and theme.                |
 | [[Plugins]]       | Larger scale packages.       |
@@ -938,6 +938,16 @@ Wrap key bindings in =<kbd>=.
   (setq org-hugo-use-code-for-kbd t)
 #+END_SRC
 
+**** Pandoc
+This is another exporter for org-mode that translates Org-mode file to various
+other formats via Pandoc.
+
+***** Installation
+#+BEGIN_SRC emacs-lisp
+  (use-package ox-pandoc
+    :ensure t)
+#+END_SRC
+
 *** LaTeX Macros
 Support LaTeX macros in both LaTeX and HTML/MathJax export. We do this by adding
 a dummy language to Babel. Idea comes form [[https://www.reddit.com/r/orgmode/comments/7u2n0h/tip_for_defining_latex_macros_for_use_in_both/][here]].