From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frederick Giasson Subject: Bug: HTML exports issues: none not working, and issues with #+TITLE Date: Mon, 7 Nov 2016 14:30:06 -0500 Message-ID: <95ca153f-10d8-52fd-9932-bd0249aaf723@fgiasson.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]:52643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c3pcU-0002N9-BV for emacs-orgmode@gnu.org; Mon, 07 Nov 2016 14:30:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c3pcP-0001eX-FU for emacs-orgmode@gnu.org; Mon, 07 Nov 2016 14:30:14 -0500 Received: from s052.panelboxmanager.com ([72.55.186.33]:35527) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c3pcP-0001dr-BI for emacs-orgmode@gnu.org; Mon, 07 Nov 2016 14:30:09 -0500 Received: from mailnull by s052.panelboxmanager.com with sa-checked (Exim 4.87) (envelope-from ) id 1c3pcL-000jN9-97 for emacs-orgmode@gnu.org; Mon, 07 Nov 2016 14:30:07 -0500 Received: from modemcable199.69-130-66.mc.videotron.ca ([66.130.69.199]:61486 helo=[192.168.0.199]) by s052.panelboxmanager.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.87) (envelope-from ) id 1c3pcK-000jMg-Ov for emacs-orgmode@gnu.org; Mon, 07 Nov 2016 14:30:04 -0500 Content-Language: en-US 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" To: emacs-orgmode@gnu.org Hi, I upgraded to Emacs 25.1 and Org-mode 9.0 (latest from Elpa) and I am experiencing two issues with export: (1) The header parameter ":exports none" doesn't appear to be working. With the following code, the code block is exported to HTML: ============= #+BEGIN_SRC elisp :results silent :exports none (setq org-html-htmlize-output-type 'inline-css) #+END_SRC ============= (2) As soon as I have a non-empty #+TITLE: defined in a org-mode file, I am getting this kind of error with exporting in HTML (or any other formats): ============= #+TITLE test ============= returns: ============= apply: Wrong type argument: listp, #("test" 0 4 (:parent (#0))) ============= Thanks, Fred