[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] #+INCLUDE broken (or changed) in org-mode 7.9? Help!
From: |
Nick Dokos |
Subject: |
Re: [O] #+INCLUDE broken (or changed) in org-mode 7.9? Help! |
Date: |
Mon, 27 Aug 2012 02:14:44 -0400 |
Bill Day <address@hidden> 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: <div class="container"><div class="span-4">
> #+INCLUDE sitemap-generated.org
> #+HTML: </div><div class="span-16">
> #+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