From mboxrd@z Thu Jan 1 00:00:00 1970 From: William Crandall Subject: Re: Inhibit converting "--" to "–" Date: Sat, 16 Jun 2012 20:15:22 -0700 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:32971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sg5xW-0003IU-Tv for emacs-orgmode@gnu.org; Sat, 16 Jun 2012 23:15:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sg5xV-00020A-Ag for emacs-orgmode@gnu.org; Sat, 16 Jun 2012 23:15:26 -0400 Received: from mail-ob0-f169.google.com ([209.85.214.169]:56974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sg5xV-0001xw-3K for emacs-orgmode@gnu.org; Sat, 16 Jun 2012 23:15:25 -0400 Received: by obbta14 with SMTP id ta14so7034981obb.0 for ; Sat, 16 Jun 2012 20:15:22 -0700 (PDT) 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: kbkbkbkb1@gmail.com Cc: emacs-orgmode@gnu.org Kai, With the old exporter, you could make your own special-string and convert it. In init.el: -------------------------------------------------- ;; For old exporter: C-c C-e h (eval-after-load "org" '(setq org-export-html-special-string-regexps (append org-export-html-special-string-regexps '(("-nd-" . "--"))))) -------------------------------------------------- I've not been able to get special-strings working with the new exporter, but it should be something like: -------------------------------------------------- ;; For new exporter (but not yet) (eval-after-load "org" '(setq org-e-html-special-string-regexps (append org-e-html-special-string-regexps '(("-nd-" . "--"))))) -------------------------------------------------- HTH -BC