From mboxrd@z Thu Jan 1 00:00:00 1970 From: dmg Subject: Bug report: export to HTML does not escape * in example Date: Sun, 26 Feb 2017 17:00:54 -0800 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=f403045e3012ef97b20549789e3a Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54299) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ci9h4-0001mr-Ps for emacs-orgmode@gnu.org; Sun, 26 Feb 2017 20:01:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ci9h3-00028j-D3 for emacs-orgmode@gnu.org; Sun, 26 Feb 2017 20:01:38 -0500 Received: from mail-ua0-x232.google.com ([2607:f8b0:400c:c08::232]:35263) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ci9h3-00028c-8J for emacs-orgmode@gnu.org; Sun, 26 Feb 2017 20:01:37 -0500 Received: by mail-ua0-x232.google.com with SMTP id 40so41191083uau.2 for ; Sun, 26 Feb 2017 17:01:35 -0800 (PST) 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" To: emacs-orgmode --f403045e3012ef97b20549789e3a Content-Type: text/plain; charset=UTF-8 The following example: * Example #+begin_example hello world #+end_example #+begin_example * hello world #+end_example exports an HTML file where the second "hello word" is interpreted as a header, ignoring that it is within begin_example. See below I am using org-mode version 9.0.3, under emacs-25.

Table of Contents

1 Example

hello world 1

#+beginexample

2 hello world 2

#+endexample

-- --dmg --- Daniel M. German http://turingmachine.org --f403045e3012ef97b20549789e3a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
The following example:


* Example

#+begin_example
hello world
#+en= d_example

#+begin_example
* hello worl= d
#+end_example

exports an HTML file where the second= "hello word" is interpreted as a=C2=A0
header, ignoring that it = is within begin_example. See below

I am using org-mode version 9.0.3, = under emacs-25.


<div id=3D"content">
<div id=3D"table-of-contents"= ;>
<h2&g= t;Table of Contents</h2>
<div id=3D"text-table-of-contents">=
<ul>
<li><a href=3D= "#org4937d33">1. Example</a></li>
<li><a href=3D"#= org774a613">2. hello world 2</a></li>
= </ul>
</div>
</div>
<div id=3D"outline-containe= r-org4937d33" class=3D"outline-2">
<h2 id=3D"org4937d33"&g= t;<span class=3D"section-number-2">1</span> Example&l= t;/h2>
<= div class=3D"outline-text-2" id=3D"text-1">
<pre class=3D"= example">
hello world 1
</pre>

<p&= gt;
#+begin<= ;sub>example</sub>
</p>
</div>
</div>
<div id=3D"outline-container-org774a613" class=3D&quo= t;outline-2">
<h2 id=3D"org774a613"><span class=3D"sectio= n-number-2">2</span> hello world 2</h2>
<div class=3D"outline= -text-2" id=3D"text-2">
<p>
#+end<sub>example</sub>
</p>
<= font face=3D"arial, helvetica, sans-serif"></div>
</div>
</div>




--
--dmg

---
Daniel M. German
http://turingmachine.org
--f403045e3012ef97b20549789e3a-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Bug report: export to HTML does not escape * in example Date: Mon, 27 Feb 2017 08:40:31 +0100 Message-ID: <87h93gdqts.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciFvD-0006V7-51 for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 02:40:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciFv9-0001th-AL for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 02:40:39 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:40667) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ciFv9-0001t7-3h for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 02:40:35 -0500 In-Reply-To: (dmg@turingmachine.org's message of "Sun, 26 Feb 2017 17:00:54 -0800") 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" To: dmg Cc: emacs-orgmode Hello, dmg writes: > The following example: > > > * Example > > #+begin_example > hello world > #+end_example > > #+begin_example > * hello world > #+end_example > > exports an HTML file where the second "hello word" is interpreted as a > header, ignoring that it is within begin_example. See below A star at the beginning of a line is always a headline. It has precedence over the block around it. You need to escape the star character: #+begin_example ,* hello world #+end_example Regards, -- Nicolas Goaziou From mboxrd@z Thu Jan 1 00:00:00 1970 From: dmg Subject: Re: Bug report: export to HTML does not escape * in example Date: Mon, 27 Feb 2017 00:24:30 -0800 Message-ID: References: <87h93gdqts.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=f403045e301264bc3905497ed148 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36188) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciGcL-0008EK-GS for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 03:25:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciGcK-0001g6-43 for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 03:25:13 -0500 Received: from mail-ua0-x236.google.com ([2607:f8b0:400c:c08::236]:34582) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ciGcJ-0001fs-Tm for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 03:25:12 -0500 Received: by mail-ua0-x236.google.com with SMTP id f54so18018663uaa.1 for ; Mon, 27 Feb 2017 00:25:11 -0800 (PST) In-Reply-To: <87h93gdqts.fsf@nicolasgoaziou.fr> 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" To: Nicolas Goaziou Cc: emacs-orgmode --f403045e301264bc3905497ed148 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sun, Feb 26, 2017 at 11:40 PM, Nicolas Goaziou wrote: > > A star at the beginning of a line is always a headline. It has > precedence over the block around it. You need to escape the star > character: > > #+begin_example > ,* hello world > #+end_example > > Regards, =E2=80=8BThank you. I guess the issue is then with org-babel. I am running a babel script that generates, as one of its line * in the front: =E2=80=8B#+BEGIN_SRC sh echo "* Hello" #+END_SRC #+RESULTS: #+begin_example * Hello #+end_example =E2=80=8BIn that case, should babel be the one escaping the * in the RESULT= S block? thanks again, --daniel=E2=80=8B --=20 --dmg --- Daniel M. German http://turingmachine.org --f403045e301264bc3905497ed148 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable

= On Sun, Feb 26, 2017 at 11:40 PM, Nicolas Goaziou <mail@nicolasgoazio= u.fr> wrote:

A star at the beginning of a line is always a headline. It has
precedence over the block around it. You need to escape the star
character:

=C2=A0 #+begin_example
=C2=A0 ,* hello world
=C2=A0 #+end_example

Regards,

=E2=80=8BThank you. I gue= ss the issue is then with org-babel.

I am running a babel script that generates, as one of its li= ne * in the front:

=E2=80=8B#+BEGIN_SRC = sh
echo "* Hello"
#+END_SRC

#+RESULTS:
#+begin_example
* Hello
=
#+= end_example

=E2=80=8BIn = that case, should babel be the one escaping the * in the RESULTS block?

thanks again,

--daniel=E2=80=8B

=


--
= --dmg

---
Daniel M. German
http://turingmachine.org
--f403045e301264bc3905497ed148-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: Bug report: export to HTML does not escape * in example Date: Mon, 27 Feb 2017 09:57:13 -0800 Message-ID: References: <87h93gdqts.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="0-1536271295-1488218234=:918" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49499) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ciPY1-0005F9-RU for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 12:57:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ciPXy-0007vI-J4 for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 12:57:21 -0500 Received: from iport-acv2-out.ucsd.edu ([132.239.0.174]:28178) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1ciPXy-0007tk-1m for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 12:57:18 -0500 In-Reply-To: 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" To: dmg Cc: emacs-orgmode , Nicolas Goaziou This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-1536271295-1488218234=:918 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 27 Feb 2017, dmg wrote: > On Sun, Feb 26, 2017 at 11:40 PM, Nicolas Goaziou > wrote: > >> >> A star at the beginning of a line is always a headline. [...] > > ​Thank you. I guess the issue is then with org-babel. > > I am running a babel script that generates, as one of its line * in the > front: > > ​#+BEGIN_SRC sh > echo "* Hello" > #+END_SRC > > #+RESULTS: > #+begin_example > * Hello > #+end_example > > ​In that case, should babel be the one escaping the * in the RESULTS block? Is that *really* what it did? When I run your example, I get: #+RESULTS: : * Hello and this exports (with the `:exports results' header) to html wrapped in a
 container:

* Hello
using Org 9.0.5. Without that header the src code gets wrapped in a
 container.

So there must be something in/about your setup you haven't mentioned.

HTH,

Chuck
--0-1536271295-1488218234=:918--

From mboxrd@z Thu Jan  1 00:00:00 1970
From: Nick Dokos 
Subject: Re: Bug report: export to HTML does not escape * in example
Date: Mon, 27 Feb 2017 14:04:02 -0500
Message-ID: <8760jvh2vx.fsf@alphaville.usersys.redhat.com>
References: 
	<87h93gdqts.fsf@nicolasgoaziou.fr>
	
	
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Return-path: 
Received: from eggs.gnu.org ([2001:4830:134:3::10]:37975)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from ) id 1ciQat-0001UE-EN
	for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 14:04:24 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from ) id 1ciQap-0005o3-Gx
	for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 14:04:23 -0500
Received: from [195.159.176.226] (port=50980 helo=blaine.gmane.org)
	by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16)
	(Exim 4.71) (envelope-from )
	id 1ciQap-0005nz-AW
	for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 14:04:19 -0500
Received: from list by blaine.gmane.org with local (Exim 4.84_2)
	(envelope-from ) id 1ciQac-00081f-R0
	for emacs-orgmode@gnu.org; Mon, 27 Feb 2017 20:04:06 +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"
	
To: emacs-orgmode@gnu.org

"Charles C. Berry"  writes:

> On Mon, 27 Feb 2017, dmg wrote:
>
>> On Sun, Feb 26, 2017 at 11:40 PM, Nicolas Goaziou 
>> wrote:
>>
>>>
>>> A star at the beginning of a line is always a headline.
>
> [...]
>
>>
>> ​Thank you. I guess the issue is then with org-babel.
>>
>> I am running a babel script that generates, as one of its line * in the
>> front:
>>
>> ​#+BEGIN_SRC sh
>> echo "* Hello"
>> #+END_SRC
>>
>> #+RESULTS:
>> #+begin_example
>> * Hello
>> #+end_example
>>
>> ​In that case, should babel be the one escaping the * in the RESULTS block?
>
> Is that *really* what it did?
>
> When I run your example, I get:
>
> #+RESULTS:
> : * Hello
>
> and this exports (with the `:exports results' header) to html wrapped
> in a 
 container:
>
> 
> * Hello
> 
> > using Org 9.0.5. > > Without that header the src code gets wrapped in a
 container.
>
> So there must be something in/about your setup you haven't mentioned.
>

Probably org-babel-min-lines-for-block-output is set to a small value,
maybe 0 (?)

-- 
Nick

From mboxrd@z Thu Jan  1 00:00:00 1970
From: D M German 
Subject: Re: Bug report: export to HTML does not escape * in example
Date: Wed, 01 Mar 2017 12:04:55 -0800
Message-ID: <87mvd4226w.fsf@turingmachine.org>
References: 
	<87h93gdqts.fsf@nicolasgoaziou.fr>
	
	
Reply-To: dmg@turingmachine.org
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
Return-path: 
Received: from eggs.gnu.org ([2001:4830:134:3::10]:40942)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from ) id 1cjAUi-000897-DI
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 15:05:05 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from ) id 1cjAUe-0001e7-VC
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 15:05:04 -0500
Received: from mail-pf0-x231.google.com ([2607:f8b0:400e:c00::231]:36432)
	by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16)
	(Exim 4.71) (envelope-from ) id 1cjAUe-0001a2-Qb
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 15:05:00 -0500
Received: by mail-pf0-x231.google.com with SMTP id x66so14080360pfb.3
	for ; Wed, 01 Mar 2017 12:04:58 -0800 (PST)
In-Reply-To: 
	(Charles C. Berry's message of "Mon, 27 Feb 2017 09:57:13 -0800")
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"
	
To: "Charles C. Berry" 
Cc: emacs-orgmode , Nicolas Goaziou 

=20
Hi Charles, everybody,

 >> I am running a babel script that generates, as one of its line * in the
 >> front:
 >>=20
 >> =E2=80=8B#+BEGIN_SRC sh
 >> echo "* Hello"
 >> #+END_SRC
 >>=20
 >> #+RESULTS:
 >> #+begin_example
 >> * Hello
 >> #+end_example
 >>=20
 >> =E2=80=8BIn that case, should babel be the one escaping the * in the RE=
SULTS block?

 Charles> Is that *really* what it did?

 Charles> When I run your example, I get:

 Charles> #+RESULTS:
 Charles> : * Hello

 Charles> and this exports (with the `:exports results' header) to html wra=
pped in a 
 container:

 Charles> 
 Charles> * Hello
 Charles> 
Charles> using Org 9.0.5. Charles> Without that header the src code gets wrapped in a
 containe=
r.

 Charles> So there must be something in/about your setup you haven't mentio=
ned.

 Charles> HTH,

 Charles> Chuck




I looked a bit into my configuration. In my configuration, I set the value =
of=20
org-babel-min-lines-for-block-output to 0.

The default value of this variable is by default 10.

When the number of lines in the output is larger than it, it uses
EXAMPLE blocks rather than the escaped ones.

So the original issue (* not being escaped) will nonetheless appear when
the threshold is passed:

Here is an example (I run it with emacs -nw -q, using emacs25) org
version 8.2.10 (this works also in my configuration under 9.0.2)

#+BEGIN_SRC emacs-lisp :results output
(dotimes (i 2) (print '*hello))
#+END_SRC

#+RESULTS:
:=20
: *hello
:=20
: *hello


#+BEGIN_SRC emacs-lisp :results output
(dotimes (i 10) (print '*hello))
#+END_SRC

#+RESULTS:
#+begin_example

*hello

*hello

*hello

*hello

*hello
#+end_example


=20

thank you all again,

--
Daniel M. German                  "Cyberspace. A consensual hallucination
                                   experienced daily by billions
   William Gibson ->               of legitimate operators in every nation"
http://turingmachine.org/
http://silvernegative.com/
dmg (at) uvic (dot) ca
replace (at) with @ and (dot) with .

From mboxrd@z Thu Jan  1 00:00:00 1970
From: Nicolas Goaziou 
Subject: Re: Bug report: export to HTML does not escape * in example
Date: Wed, 01 Mar 2017 22:20:36 +0100
Message-ID: <87bmtkbsnv.fsf@nicolasgoaziou.fr>
References: 
	<87h93gdqts.fsf@nicolasgoaziou.fr>
	
	
	<87mvd4226w.fsf@turingmachine.org>
Mime-Version: 1.0
Content-Type: text/plain
Return-path: 
Received: from eggs.gnu.org ([2001:4830:134:3::10]:48248)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from ) id 1cjBfy-0001Ad-Tn
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 16:20:47 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from ) id 1cjBfy-0000YW-1A
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 16:20:46 -0500
Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:33004)
	by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32)
	(Exim 4.71) (envelope-from )
	id 1cjBfx-0000Xt-Rf
	for emacs-orgmode@gnu.org; Wed, 01 Mar 2017 16:20:45 -0500
In-Reply-To: <87mvd4226w.fsf@turingmachine.org> (D. M. German's message of
	"Wed, 01 Mar 2017 12:04:55 -0800")
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"
	
To: D M German 
Cc: emacs-orgmode , "Charles C. Berry" 

Hello,

D M German  writes:

> So the original issue (* not being escaped) will nonetheless appear when
> the threshold is passed:
>
> Here is an example (I run it with emacs -nw -q, using emacs25) org
> version 8.2.10 (this works also in my configuration under 9.0.2)
>
> #+BEGIN_SRC emacs-lisp :results output
> (dotimes (i 2) (print '*hello))
> #+END_SRC
>
>
> #+RESULTS: : : *hello : : *hello
>
> #+BEGIN_SRC emacs-lisp :results output
> (dotimes (i 10) (print '*hello))
> #+END_SRC
>
>
> #+RESULTS:
>
> #+begin_example
>
> *hello
>
> *hello
>
> *hello
>
> *hello
>
> *hello
> #+end_example

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

From mboxrd@z Thu Jan  1 00:00:00 1970
From: "Charles C. Berry" 
Subject: Re: Bug report: export to HTML does not escape * in example
Date: Fri, 3 Mar 2017 11:06:39 -0800
Message-ID: 
References: 
	<87h93gdqts.fsf@nicolasgoaziou.fr>
	
	
	<87mvd4226w.fsf@turingmachine.org> <87bmtkbsnv.fsf@nicolasgoaziou.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII; format=flowed
Return-path: 
Received: from eggs.gnu.org ([2001:4830:134:3::10]:45937)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from ) id 1cjsXQ-00050P-Nr
	for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 14:06:49 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from ) id 1cjsXM-0002HV-P4
	for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 14:06:48 -0500
Received: from iport-bcv2-out.ucsd.edu ([132.239.0.73]:43177)
	by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71)
	(envelope-from ) id 1cjsXM-0002GW-Cg
	for emacs-orgmode@gnu.org; Fri, 03 Mar 2017 14:06:44 -0500
In-Reply-To: <87bmtkbsnv.fsf@nicolasgoaziou.fr>
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"
	
To: Nicolas Goaziou 
Cc: D M German , emacs-orgmode 

On Wed, 1 Mar 2017, Nicolas Goaziou wrote:

> Hello,
>
> D M German  writes:
>
>> So the original issue (* not being escaped) will nonetheless appear when
>> the threshold is passed:
>>
>
> Fixed. Thank you.
>

Hmmm. Now I get

:    FAILED  test-ob/org-babel-insert-result

for make test2, which appears to be from trying to match

",\\* Not an headline" "

to

#+RESULTS:
: * Not an headline

in test-ob/org-babel-insert-result

HTH,

Chuck

From mboxrd@z Thu Jan  1 00:00:00 1970
From: Nicolas Goaziou 
Subject: Re: Bug report: export to HTML does not escape * in example
Date: Sun, 05 Mar 2017 18:06:06 +0100
Message-ID: <87o9xf7iwx.fsf@nicolasgoaziou.fr>
References: 
	<87h93gdqts.fsf@nicolasgoaziou.fr>
	
	
	<87mvd4226w.fsf@turingmachine.org> <87bmtkbsnv.fsf@nicolasgoaziou.fr>
	
Mime-Version: 1.0
Content-Type: text/plain
Return-path: 
Received: from eggs.gnu.org ([2001:4830:134:3::10]:36148)
	by lists.gnu.org with esmtp (Exim 4.71)
	(envelope-from ) id 1ckZbr-0001mX-3A
	for emacs-orgmode@gnu.org; Sun, 05 Mar 2017 12:06:15 -0500
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
	(envelope-from ) id 1ckZbn-0005dQ-QZ
	for emacs-orgmode@gnu.org; Sun, 05 Mar 2017 12:06:15 -0500
Received: from relay4-d.mail.gandi.net ([217.70.183.196]:50361)
	by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32)
	(Exim 4.71) (envelope-from )
	id 1ckZbn-0005cS-KO
	for emacs-orgmode@gnu.org; Sun, 05 Mar 2017 12:06:11 -0500
In-Reply-To: 
	(Charles C. Berry's message of "Fri, 3 Mar 2017 11:06:39 -0800")
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"
	
To: "Charles C. Berry" 
Cc: D M German , emacs-orgmode 

Hello,

"Charles C. Berry"  writes:

> On Wed, 1 Mar 2017, Nicolas Goaziou wrote:
>
>> Hello,
>>
>> D M German  writes:
>>
>>> So the original issue (* not being escaped) will nonetheless appear when
>>> the threshold is passed:
>>>
>>
>> Fixed. Thank you.
>>
>
> Hmmm. Now I get
>
> :    FAILED  test-ob/org-babel-insert-result
>
> for make test2, which appears to be from trying to match
>
> ",\\* Not an headline" "
>
> to
>
> #+RESULTS:
> : * Not an headline
>
> in test-ob/org-babel-insert-result

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou