From mboxrd@z Thu Jan 1 00:00:00 1970 From: "iminet@ymail.com" Subject: html-export: Unique, non-enumerated heading-IDs according to heading Date: Sat, 30 Jul 2011 00:41:11 +0200 Message-ID: <4E333707.40504@ymail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qmvje-0001ML-LB for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 18:40:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qmvjd-0000o6-8O for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 18:40:50 -0400 Received: from nm17-vm0.bullet.mail.ne1.yahoo.com ([98.138.91.58]:34893) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Qmvjc-0000nm-WF for emacs-orgmode@gnu.org; Fri, 29 Jul 2011 18:40:49 -0400 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: emacs-orgmode@gnu.org Hi. Usually, when you export an org-document to HTML, the headings get enumerated IDs (which are in particular important for anchors) like this: * this is my first heading * the second one This org-code (more or less) becomes:

this is my first heading

the second one

But this behaviour is not always ideal: If you add a heading the ID of all following headings changes -- unless you didn't set the CUSTOM_ID property manually. So, this e-mail requests the feature that it should be possible to make Org automatically set the ID according to the content of the heading. E.g.… * foobar * this heading includes lots of spaces and some other special characters like "§$%&/() … would become this:

foobar

this heading includes lots of spaces and some other special characters like "§$%&/()

What do you think? Wouldnt that be nice? I think you should be able to switch between these two behaviours -- both have their own advantages. Having said this, Goodbye.