Re: [O] #+INCLUDE broken (or changed) in org-mode 7.9? Help!
My bad. Thanks, guys! On Mon, Aug 27, 2012 at 3:12 AM, Nicolas Goaziou wrote: > Hello, > > Nick Dokos writes: > > > And there seems to be a bug in the easy template code in org.el: > > line 11390 says > > > > ("I" "#+INCLUDE %file ?" > > > > and it seems to be missing the colon. > > Fixed. Thank you. > > > Regards, > > -- > Nicolas Goaziou > -- Bill Day williamson@gmail.com
Re: [O] #+INCLUDE broken (or changed) in org-mode 7.9? Help!
Hello, Nick Dokos writes: > And there seems to be a bug in the easy template code in org.el: > line 11390 says > > ("I" "#+INCLUDE %file ?" > > and it seems to be missing the colon. Fixed. Thank you. Regards, -- Nicolas Goaziou
Re: [O] #+INCLUDE broken (or changed) in org-mode 7.9? Help!
Bill Day wrote: > The following code used to include the sitemap and a search box in my > published index.html page: > > index.org > > #+SETUPFILE: ~/elisp/org-templates/level-0.org > #+TITLE: Wiki > #+HTML: > #+INCLUDE sitemap-generated.org > #+HTML: > #+INCLUDE search.org > ... > Now they do not appear anymore. Any suggestions, please? Missing colons probably: #+INCLUDE: sitemap-generated.org And there seems to be a bug in the easy template code in org.el: line 11390 says ("I" "#+INCLUDE %file ?" and it seems to be missing the colon. Nick
[O] #+INCLUDE broken (or changed) in org-mode 7.9? Help!
The following code used to include the sitemap and a search box in my published index.html page: index.org #+SETUPFILE: ~/elisp/org-templates/level-0.org #+TITLE: Wiki #+HTML: #+INCLUDE sitemap-generated.org #+HTML: #+INCLUDE search.org . . . default.el (require 'org-publish) (setq org-publish-project-alist '( ("wiki-notes" :base-directory "~/git/org-mode/wiki" :base-extension: "org" :publishing-directory "/ssh:[my site]:/usr/local/share/wiki/" :recursive t :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t :table-of-contents nil :auto-sitemap t :sitemap-filename "sitemap-generated.org" :section-numbers nil ) ("wiki-static" :base-directory "~/git/org-mode/wiki/" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "/ssh:[my site]/usr/local/share/wiki/" :recursive t :publishing-function org-publish-attachment ) ("wiki" :components ("wiki-notes" "wiki-static")) )) Now they do not appear anymore. Any suggestions, please? Thanks, Bill Day -- Bill Day williamson@gmail.com