emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] custom IDs not exported


From: Nick Dokos
Subject: Re: [O] custom IDs not exported
Date: Thu, 16 Jun 2011 17:40:56 -0400

Daniel Clemente <address@hidden> wrote:

> Hi,
> 
> Could you check this patch in?
> 

It is checked in already. The commit looks like this:

,----
| commit 1891ee5aafee710315a26595385e670e1ac3771e
| Author: Carsten Dominik <address@hidden>
| Date:   Tue Jun 14 10:46:09 2011 +0200
| 
|     Fix HTML export to make CUSTOM_ID links work again
|     
|     * lisp/org-html.el (org-export-as-html):
|     (org-html-level-start): Only convert section number underscores to dashes.
`----

``git show 1891ee5aafee710315a26595385e670e1ac3771e'' will show you whether
you have it or need to pull.

Nick

> 
> 
> El Sat, 11 Jun 2011 23:12:26 -0400 Nick Dokos va escriure:
> > 
> > I have a minimal patch that I think fixes this problem, but there are
> > other underscores used in various places in org-html.el so there might
> > be additional problems. I'd appreciate it if you (and/or others) test it
> > and report not only on this problem but on any other problems you find.
> > 
> > Thanks,
> > Nick
> > 
> > diff --git a/lisp/org-html.el b/lisp/org-html.el
> > index afc6a77..b5d371f 100644
> > --- a/lisp/org-html.el
> > +++ b/lisp/org-html.el
> > @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\">
> >                                        (setq txt (replace-match "" t t 
> > txt)))
> >                                      (setq href
> >                                            (replace-regexp-in-string
> > -                                           "\\." "_" (format "sec-%s" 
> > snumber)))
> > +                                           "\\." "-" (format "sec-%s" 
> > snumber)))
> >                                      (setq href (org-solidify-link-text (or 
> > (cdr (assoc href org-export-preferred-target-alist)) href)))
> >                                      (push
> >                                       (format
> > @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels."
> >             (insert "<ul>\n<li>" title "<br/>\n"))))
> >     (aset org-levels-open (1- level) t)
> >     (setq snumber (org-section-number level)
> > -         snu (replace-regexp-in-string "\\." "_" snumber))
> > +         snu (replace-regexp-in-string "\\." "-" snumber))
> >     (setq level (+ level org-export-html-toplevel-hlevel -1))
> >     (if (and num (not body-only))
> >         (setq title (concat
> > 
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]