all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Lennart Borgman <lennart.borgman@gmail.com>
To: Ralf Mattes <rm@seid-online.de>
Cc: emacs-devel@gnu.org
Subject: Re: Converting a string to valid XHTML id?
Date: Wed, 1 Dec 2010 15:53:46 +0100	[thread overview]
Message-ID: <AANLkTi=8WjXVF8Aq0zDiMp7yYZ4PfEzW9d6mKHHxQArH@mail.gmail.com> (raw)
In-Reply-To: <id32v6$g24$1@dough.gmane.org>

On Tue, Nov 30, 2010 at 3:50 PM, Ralf Mattes <rm@seid-online.de> wrote:
>
> But this is wrong - it'll possibly generate invalid html.
> Consider the following:
>
>  (org-newhtml-escape-id "this is cool!")
>
> ⇒ "this-is-cool-"
>
>  (org-newhtml-escape-id "this is cool?")
>
> ⇒ "this-is-cool-"
>
> collapsing two different strings to the same ID, resulting in
> invalid html.

Thanks Ralf, I thought it was a bit too much too handle, but here is a
new version that tries to handle this. (You might perhaps sometimes
want to set org-newhtml-escaped-ids to nil.)


(defvar org-newhtml-escaped-ids nil)
(make-variable-buffer-local 'org-newhtml-escaped-ids)

(defun org-newhtml-escape-id (id)
  "Return a valid xhtml id attribute string.
See URL `http://xhtml.com/en/xhtml/reference/attribute-data-types/#id'.

Try to make this unique.  Note that this cannot be done unless we
know all used ids since the resulting string might be an already
used id."
  (let ((old (assoc id org-newhtml-escaped-ids))
        new-id)
    (if old
        (cdr old)
      (setq new-id (replace-regexp-in-string "\\`\\([^A-Za-z]\\)"
"ANON-\\1" id nil))
      (setq new-id (replace-regexp-in-string "[^A-Za-z0-9_.-]" "-" new-id t))
      (setq old t)
      (while old
        (setq old (rassoc new-id org-newhtml-escaped-ids))
        (when old
          (setq new-id (concat new-id "X"))))
      (push (cons id new-id) org-newhtml-escaped-ids)
      new-id)))



  reply	other threads:[~2010-12-01 14:53 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-29  1:43 Converting a string to valid XHTML id? Lennart Borgman
2010-11-29 18:08 ` Andreas Schwab
2010-11-29 18:18   ` Lennart Borgman
2010-11-29 18:33     ` Deniz Dogan
2010-11-29 18:39       ` Lennart Borgman
2010-11-30 14:50         ` Ralf Mattes
2010-12-01 14:53           ` Lennart Borgman [this message]
2010-12-01 15:34             ` Davis Herring
2010-12-01 15:58               ` rm
2010-12-01 22:32                 ` Davis Herring
2010-12-01 23:12                   ` Lennart Borgman
2010-12-01 23:16                     ` Davis Herring
2010-12-01 23:31                       ` Lennart Borgman
2010-12-02  0:12                         ` Davis Herring
2010-12-02  0:44                           ` Lennart Borgman
2010-12-02  1:18                             ` Davis Herring
2010-12-02  1:51                               ` Lennart Borgman
2010-12-01 15:51             ` Stefan Monnier
2010-12-01 19:51               ` Lennart Borgman
2010-12-02  2:37                 ` Kevin Rodgers
2010-12-02  2:54                   ` Lennart Borgman
2010-12-02  4:42                     ` PJ Weisberg
2010-12-02 12:26                       ` Lennart Borgman
2010-12-02 15:50                         ` Lawrence Mitchell
2010-12-02 17:47                           ` Lennart Borgman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='AANLkTi=8WjXVF8Aq0zDiMp7yYZ4PfEzW9d6mKHHxQArH@mail.gmail.com' \
    --to=lennart.borgman@gmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=rm@seid-online.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.