I am trying to change my publishing setup over to use the new exporter.
With the recent merge and change of names from -e-backend to -ox-backend
I am a bit confused as to how I should set up my publishing alist.
I have tried:
#+begin_example
(require 'ox-html)
(require 'ox-publish)
;;(require 'org-publish)
(setq org-publish-project-alist
'(
("org-static-ian"
:base-directory "~/Dropbox/web_sites/ianbarton/org/_posts"
:base-extension
"css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|php"
:publishing-directory
"~/Dropbox/web_sites/ianbarton/pelican/blog/content"
:recursive t
:publishing-function org-ox-publish-attachment)
("org-ianbarton"
:base-directory "~/Dropbox/web_sites/ianbarton/org/_posts"
:base-extension "org"
:publishing-directory
"~/Dropbox/web_sites/ianbarton/pelican/blog/content"
:recursive t
:publishing-function org-ox-html-publish-to-html
:headline-levels 4 ; Just the default for this
project.
:auto-preamble t
:auto-index f
:html-extension "yml"
:auto-preamble t
:body-only t
)
("ianbarton" :components ("org-ianbarton" "org-static-ian"))
))
#+end_example
However, org-ox-html-publish-to-html isn't defined anywhere. Browsing
through ox-publish.el it seems I should be using org-publish-org-to to
with a symbol, but I can't seem to manage to find the correct syntax.
Can anyone enlighten me?
Ian.