From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Changing Footer in org mode publishing Date: Fri, 03 Jul 2009 22:49:13 -0400 Message-ID: <9674.1246675753@gamaville.dokosmarshall.org> References: Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MMvL2-0002SH-KG for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 22:50:52 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MMvKy-0002OF-5C for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 22:50:52 -0400 Received: from [199.232.76.173] (port=38674 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MMvKx-0002Nt-OM for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 22:50:47 -0400 Received: from vms173009pub.verizon.net ([206.46.173.9]:12142) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MMvKx-0004Ny-Cd for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 22:50:47 -0400 Received: from gamaville.dokosmarshall.org ([98.110.172.221]) by vms173009.mailsrvcs.net (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 32bit)) with ESMTPA id <0KM800ACXL54Q2Q4@vms173009.mailsrvcs.net> for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 21:48:46 -0500 (CDT) In-reply-to: Message from charles snyder of "Fri\, 03 Jul 2009 17\:14\:35 CDT." 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: charles snyder Cc: emacs-orgmode@gnu.org charles snyder wrote: > This should be trivial to fix, but I can't seem to get rid of this: >=20 > "Charles Snyder " >=20 > in the footer of all my org-publish-project files. >=20 > I have >=20 > :email=C2=A0 'clsnyder at gmail dot com' >=20 > in my org publish project alist >=20 I believe that those should be double quotes: :email "clsnyder at gmail dot com" This is lisp code and single quotes in lisp are special. I tried this in my setup and I got lisp errors. With double quotes, it worked fine. But be sure to avoid being bitten by caching: o First, re-evaluate the form that sets the org-publish-alist (or restart emacs). o Second, did you change the org-mode file? org-mode keeps track of time stamps, so unless it finds a changed file, it will not re-publish it. o Third, make sure that your browser is not giving you a cached old version. Clean out the browser cache and try again. HTH, Nick