20 lines
588 B
EmacsLisp
20 lines
588 B
EmacsLisp
(require 'ox-publish)
|
|
(require 'ox-rss)
|
|
|
|
(setq org-publish-project-alist
|
|
'(("ryuslash.org"
|
|
:base-directory "."
|
|
:publishing-directory "public_html"
|
|
:exclude "\\`README.org\\'"
|
|
:base-extension "org"
|
|
:publishing-function org-html-publish-to-html)
|
|
("ryuslash-rss"
|
|
:base-directory "."
|
|
:publishing-directory "public_html"
|
|
:exclude ".*"
|
|
:include ("index.org")
|
|
:base-extension "org"
|
|
:publishing-function org-rss-publish-to-rss)))
|
|
|
|
(defun publish-ryuslash.org ()
|
|
(org-publish-all))
|