From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: emphasis borders, double quotes, and export Date: Fri, 04 Apr 2014 15:08:30 +0200 Message-ID: References: <87ha6iqoaq.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39464) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WW3rT-0007GO-4U for emacs-orgmode@gnu.org; Fri, 04 Apr 2014 09:08:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WW3rI-0005hO-4l for emacs-orgmode@gnu.org; Fri, 04 Apr 2014 09:08:47 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:22423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WW3rH-0005gP-US for emacs-orgmode@gnu.org; Fri, 04 Apr 2014 09:08:36 -0400 In-Reply-To: <87ha6iqoaq.fsf@gmail.com> (Nicolas Goaziou's message of "Fri, 28 Mar 2014 17:29:49 +0100") 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: Nicolas Goaziou Cc: emacs-orgmode Hello Nicolas, Nicolas Goaziou writes: > Hello, > > Alan Schmitt writes: > >> Looking a little deeper into this, it seems to be a regression. I had >> files with things like ~'a list~ that exported correctly a couple weeks >> ago that no longer export correctly. > > This should be fixed. Thank you. I'm afraid it broke again (it was fixed for a while, but I recently updated org and it's now broken). ECM: exp_init.el: --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "/Users/schmitta/projets/org-mode/lisp") (require 'org) (require 'ox-html) (setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,") (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)) --8<---------------cut here---------------end--------------->8--- bugquote.org: --8<---------------cut here---------------start------------->8--- This is a string: ~"Nil"~. This as another string: ~'a list~. --8<---------------cut here---------------end--------------->8--- Then run: emacs --batch -Q -l exp_init.el bugquote.org -f org-html-export-to-html The resulting html shows the '~'. Thanks, Alan