From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Anchors/targets in org-export/publish Date: Sun, 16 Nov 2008 22:27:57 +0100 Message-ID: <570FDFE9-C3C9-4E77-8B04-64DAA7B6F33E@uva.nl> References: <874p2blh0m.fsf@fastmail.fm> Mime-Version: 1.0 (Apple Message framework v929.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L1pA3-00023k-HK for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 16:28:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L1pA1-00023U-QS for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 16:28:02 -0500 Received: from [199.232.76.173] (port=56246 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1pA1-00023R-Lc for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 16:28:01 -0500 Received: from ey-out-1920.google.com ([74.125.78.148]:6802) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L1pA1-0005rg-9g for emacs-orgmode@gnu.org; Sun, 16 Nov 2008 16:28:01 -0500 Received: by ey-out-1920.google.com with SMTP id 4so876587eyg.24 for ; Sun, 16 Nov 2008 13:28:00 -0800 (PST) In-Reply-To: <874p2blh0m.fsf@fastmail.fm> 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: Matthew Lundin Cc: emacs-orgmode@gnu.org On Nov 13, 2008, at 5:36 PM, Matthew Lundin wrote: > > Question about org-export: > > I'd like to create invisible radio targets to html anchor links using > org-export. > > E.g., > > # <> > > should become > > > > Currently, however, there are a couple of behaviors of org-exp.el that > make this difficult. > > 1) Org-export does convert invisible targets, but it puts paragraph > tags around the anchor, thus creating an empty line in the html > export, which messes up the layout. > >

>   >

This actually only happens if you surround the anchor by empty lines. Put it directly before a paragraph, or inside one, and this will not happen. > 2) If the commented radio target is directly beneath or above a > headline, it is not exported. I checked org-exp.el and this seems to > be an intentional behavior. I'm not sure I understand the reasons > behind this, as it prevents one from giving custom anchors to > headlines. > > This is especially important if one wants to be able to create > permalinks to headlines from other pages. This is now fixed, the invisible targets are added as empty anchors to the headline that must be directly before or after the anchor. On Nov 13, 2008, at 6:18 PM, Matthew Lundin wrote: >> >>

>>   >>

> > Quick follow up to my previous message. Would it be possible to remove > the   above. That would prevent an extra line in the output, but > it might render the link useless in some browsers. Fixed as well, thanks. I guess when I implemented this a long time ago, I did not realize that empty anchors are allowed. > (I should also apologize for the strong phrase "messes up." Don't worry, no offense taken. - Carsten