On Mon, Jul 31, 2017 at 1:37 PM wrote: > I don't know if this is intended behaviour or not. > > Save the following as setuop.org > > #+BEGIN_SRC > > :SETUP: > #+LANGUAGE: en > #+DRAWERS: SETUP NOTES PROPERTIES > #+OPTIONS: author:nil date:nil d:nil title:nil ':t tex:t > #+STARTUP: content indent > > :END: > > #+END_SRC > I haven't seen that kind of property-drawer like syntax for setupfile before (:SETUP: .. :END:).. But looks like that's just the way you represented in this email? > Now include setup.org in test.org > > #+BEGIN_SRC > > #+SETUPFILE: ./setup.org > #+TITLE: A Three Second Route. > * A Three Second Route. > Some text. > > > #+END_SRC > > Exporting as html result in: > > #+BEGIN_SRC html > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> > > > > > > A Three Second Route. > > #+END_SRC > > Note that TITLE is exported. > > Using org-master bb6e40b08655cc2f33bdf6f9 > I can recreate this issue when using the HTML backed, not when using the ascii backend. My example: == setup.org == #+OPTIONS: title:nil author:nil toc:nil ===== == example.org ===== #+SETUPFILE: ./setup.org #+TITLE: This Title Must Not Export * Heading 1 Some text. ===== C-c C-e t A (ascii export to buffer) gives: ===== 1 Heading 1 =========== Some text. ===== C-c C-e h H (html export to buffer) gives: ===== This Title Must Not Export == == -- Kaushal Modi