suragu_org/EVALME.el

15 lines
423 B
EmacsLisp
Raw Normal View History

2022-11-08 12:54:40 +01:00
;; Change this
(setq org-publish-project-alist
2022-11-13 14:35:57 +01:00
'(("suragu.net"
:base-directory "~/repos/suragu_org"
:publishing-directory "~/repos/suragu_org/out_html"
2022-11-08 12:54:40 +01:00
:section-numbers nil
:publishing-function org-html-publish-to-html
:table-of-contents nil
:recursive t
)))
2022-11-13 14:35:57 +01:00
(defun make-suragu ()
2022-11-08 12:54:40 +01:00
(interactive)
2022-11-13 14:35:57 +01:00
(org-publish "suragu.net"))