From 4b7e4add26ac4626c21011b6cdd30176fbf1a0d4 Mon Sep 17 00:00:00 2001 From: eli Date: Tue, 10 Sep 2019 23:04:51 -0400 Subject: [PATCH] pandoc export, too --- pillow-fort.org | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pillow-fort.org b/pillow-fort.org index fd8d11c..a33bfbc 100644 --- a/pillow-fort.org +++ b/pillow-fort.org @@ -194,9 +194,11 @@ I've been waffling a lot, lately, and also enjoying light themes. :config (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))) -;; Ability to export org files as purdy HTML +;; Ability to export org files in various formats (use-package htmlize :ensure t) +(use-package ox-pandoc + :ensure t) #+END_SRC *** Restclient @@ -297,7 +299,7 @@ Who needs Postman when you've got emacs!? * Useful functions ** Quickly edit this very file! #+BEGIN_SRC emacs-lisp -(defun find-config () +(defun pillow-fort/find-config () "Build the pillow fort!" (interactive) (find-file "~/.emacs.d/pillow-fort.org")) @@ -306,7 +308,7 @@ Who needs Postman when you've got emacs!? ** Create a new empty buffer #+BEGIN_SRC emacs-lisp ;; Straight up stollen from -(defun new-empty-buffer () +(defun pillow-fort/new-empty-buffer () "Create an empty buffer." (interactive) (let (($buf (generate-new-buffer "untitled")))