I have a setup containing something like this:

(setq org-publish-project-alist
      '(
        ("cv-text"
         :base-directory "~/cv/"
         :base-extension "org"
         :publishing-directory "/ssh:[EMAIL PROTECTED]:~/webs/rr/cv/"
         :recursive t
         :section-numbers nil
         :publishing-function org-publish-org-to-html
         :style "<link rel=stylesheet
                     href=\"./cv.css\"
                     type=\"text/css\">"
         :table-of-contents t
         :auto-preamble t
         :auto-postamble t
         )
        ("cv-css"
         :base-directory "~/cv/"
         :base-extension "css"
         :publishing-directory "/ssh:[EMAIL PROTECTED]:~/webs/rr/cv/"
         :publishing-function org-publish-attachment)
        ("cv"
         :components ("cv-text" "cv-css")
         )
        )
)

The only way I could see to have the publish transfer the CSS was to
create a seperate project and publish the cv-text and cv-css as
components of the cv project.

I would like to suggest that the org-publish-org-to-html defaults to
including other file types such as css. Or possibly there should also be
a "me too" setting which includes all files of a certain type or name
during a publish using whichever publish method.




_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to