pandoc export, too

This commit is contained in:
eli 2019-09-10 23:04:51 -04:00
parent 2f7cf47fc4
commit 4b7e4add26
1 changed files with 5 additions and 3 deletions

View File

@ -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 <http://ergoemacs.org/emacs/emacs_new_empty_buffer.html>
(defun new-empty-buffer ()
(defun pillow-fort/new-empty-buffer ()
"Create an empty buffer."
(interactive)
(let (($buf (generate-new-buffer "untitled")))