From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: org-mode CSS property export bug Date: Sat, 24 Apr 2010 14:42:00 +0200 Message-ID: <87pr1puinb.fsf@gmx.de> References: <87y6gf5g6x.fsf@gmx.de> <877hnycuqf.fsf@gmx.de> <8739ylmdkp.fsf@gmx.de> <87wrvxum6d.fsf@gmx.de> <18D72CC0-9E81-4861-9CB4-5A85BD8301AC@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O5ega-0008GQ-AM for emacs-orgmode@gnu.org; Sat, 24 Apr 2010 08:42:16 -0400 Received: from [140.186.70.92] (port=45463 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O5egW-0008F5-GS for emacs-orgmode@gnu.org; Sat, 24 Apr 2010 08:42:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O5egU-0002Yf-8T for emacs-orgmode@gnu.org; Sat, 24 Apr 2010 08:42:12 -0400 Received: from mail.gmx.net ([213.165.64.20]:56336) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1O5egT-0002YX-R2 for emacs-orgmode@gnu.org; Sat, 24 Apr 2010 08:42:10 -0400 In-Reply-To: <18D72CC0-9E81-4861-9CB4-5A85BD8301AC@gmail.com> (Carsten Dominik's message of "Sat, 24 Apr 2010 14:23:05 +0200") 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: Carsten Dominik Cc: emacs-orgmode@gnu.org Carsten Dominik writes: > Hi Sebastian, > > I need to ask: > > What exactly are we changing? just the class names? of the id and names as > well? Will links have to be changed? We are changing the values of the `id' attributes inside html tags. - in headlines (

and similar) - in the containers \n")) >> (setq href (cdr (assoc (concat "sec-" snumber) org-export-preferred- >> target-alist))) >> - (setq suffix (or href snumber)) >> - (setq href (or href (concat "sec-" snumber))) >> + (setq suffix (or href >> + (replace-regexp-in-string "\\." "_" snumber))) >> + (setq href (or href >> + (replace-regexp-in-string >> + "\\." "_" (concat "sec-" snumber)))) >> (insert (format "\n
> %d%s\">\n%s%s\n
> id=\"text-%s\">\n" >> suffix level (if extra-class (concat " " extra-class) "") >> level href >> >> >> >> >> Who ever uses org-info.js will have to pull the new (but backward >> compatible) version from >> >> http://orgmode.org/worg/code/org-info-js/org-info.js >> >> provided this or something similar gets applied. Please give the server >> a while to run the publishing before downloading (I guess 2 hours are >> enough). It's now ... >> >> >> $ date -u >> Sa 24. Apr 11:13:26 UTC 2010 >> >> >> >> >> Best wishes >> >> Sebastian > > - Carsten > >