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