From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Randby Subject: Re: An HTML Export Observation Date: Tue, 15 Mar 2011 11:25:05 -0400 Message-ID: <4D7F84D1.6010502@gmail.com> References: <4D7EF96D.3000004@gmail.com> <87aagw7cfo.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=37408 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzW7R-0003bG-Tv for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 11:25:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PzW7Q-0002fZ-Pw for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 11:25:09 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:43031) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PzW7Q-0002fB-MD for emacs-orgmode@gnu.org; Tue, 15 Mar 2011 11:25:08 -0400 Received: by iyf13 with SMTP id 13so877162iyf.0 for ; Tue, 15 Mar 2011 08:25:08 -0700 (PDT) In-Reply-To: <87aagw7cfo.fsf@gnu.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On 03/15/2011 09:14 AM, Bastien wrote: > Hi Scott, > > Scott Randby writes: > >> When I look at the "Org Export HTML Group" for customization, I get the >> following: >> >> Org Export Html Validation Link: Show Value >> State: UNINITIALIZED, you should not see this. >> Link to HTML validation service. >> >> Org Export Html With Timestamp: Hide Value Toggle off (nil) >> State: UNINITIALIZED, you should not see this. >> If non-nil, write timestamp into the exported HTML text. More >> >> The other variables in this group are also uninitialized. The other org >> export groups (such as "Org Export LaTeX") do not contain uninitialized >> variables. Why is it that the variables I need the most do not work? > > There was a typo in the definition of the custom type of > `org-export-html-protect-char-alist'. I just fixed this. Please > confirm you don't have this error again. Almost everything is fixed now. The variables in the "Org Export HTML Group" work as they should, and the @ issue is fixed. Thanks to everyone for their help. But there is one remaining issue -- I can't get timestamps in the postamble. First, I am using org-mode release_7.5.41.g187b. In my document, I have the following: #+OPTIONS: H:3 num:nil skip:nil toc:t author:t timestamp:t email:t creator:t I looked through the export variables for anything that mentioned timestamps and the following now appears in my .emacs: '(org-export-html-with-timestamp t) '(org-export-time-stamp-file t) '(org-export-with-timestamps t) But when I do C-c C-e h on the document, the author, email, and creator appear in the postamble, but no timestamp. I can get the timestamp if I put the following in my .emacs (following the instructions given by Nick Dokos): (setq org-export-html-postamble "

Author: %a (%e)

\n

Date: %d

\n

Generated by %c

\n") However, I would rather have the above in my document instead of my .emacs, but Nick says he can't get that to work. I saw in the manual that one may set up a project and publish it. Then one could set the :html-postamble option for the project, but I don't have time right now to learn how to set up a project. Scott Randby