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")))