From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Randby Subject: Org 8.3.1 HTML export options Date: Thu, 06 Aug 2015 17:47:41 -0400 Message-ID: <55C3D5FD.7040007@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNT0u-0004Xy-R8 for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 17:47:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZNT0q-0007b7-Me for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 17:47:48 -0400 Received: from mail-io0-x231.google.com ([2607:f8b0:4001:c06::231]:33214) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNT0q-0007at-HV for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 17:47:44 -0400 Received: by ioii16 with SMTP id i16so94898574ioi.0 for ; Thu, 06 Aug 2015 14:47:43 -0700 (PDT) Received: from [192.168.1.109] (cpe-184-56-99-2.neo.res.rr.com. [184.56.99.2]) by smtp.gmail.com with ESMTPSA id b1sm5437093iob.18.2015.08.06.14.47.42 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Aug 2015 14:47:42 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode-email HTML export in 8.3.1 no longer recognizes export options that are contained under a headline. My documents contain the following: * COMMENT Setup #+STARTUP: hidestars overview indent hideblocks #+HTML_HEAD: #+HTML_MATHJAX: path: "../../../MathJax/MathJax.js?config=TeX-AMS_HTML" #+OPTIONS: H:3 num:nil toc:t author:nil timestamp:nil email:nil creator:nil #+TITLE: Foo #+AUTHOR: By Foo #+EMAIL: foo@email.com When I export to HTML, the link to the CSS style sheet is missing, the page title is blank, sections are numbered, MathJax uses the default settings, etc. None of the options I set are recognized (except for the startup options). When I move the options to the top of the document and delete the headline, the options are exported properly. #+STARTUP: hidestars overview indent hideblocks #+HTML_HEAD: #+HTML_MATHJAX: path: "../../../MathJax/MathJax.js?config=TeX-AMS_HTML" #+OPTIONS: H:3 num:nil toc:t author:nil timestamp:nil email:nil creator:nil #+TITLE: Foo #+AUTHOR: By Foo #+EMAIL: foo@email.com The first setup works in 8.2.10, and it is what I want. I want the options to be under a headline so that they are out of the way when I work on a document, and so that I can more easily use them in other documents by copying and pasting a subtree. Please fix this. I would fix it, but I don't know elisp. Scott Randby