From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: syntax for blocks that the exporter should not render? Date: Thu, 5 Sep 2013 13:27:57 +0200 Message-ID: <0B394303-79FD-4990-B731-1F3F36FE02E0@gmail.com> References: <87eh93r35b.fsf@gmail.com> Mime-Version: 1.0 (Mac OS X Mail 6.5 \(1508\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47437) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHXjJ-0004sX-Tm for emacs-orgmode@gnu.org; Thu, 05 Sep 2013 07:28:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHXjE-0007Wv-3S for emacs-orgmode@gnu.org; Thu, 05 Sep 2013 07:28:05 -0400 Received: from mail-ea0-x235.google.com ([2a00:1450:4013:c01::235]:65482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHXjD-0007Wk-Sa for emacs-orgmode@gnu.org; Thu, 05 Sep 2013 07:28:00 -0400 Received: by mail-ea0-f181.google.com with SMTP id d10so838266eaj.12 for ; Thu, 05 Sep 2013 04:27:58 -0700 (PDT) In-Reply-To: <87eh93r35b.fsf@gmail.com> 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: Org Mode On Sep 5, 2013, at 12:09 PM, Nicolas Goaziou = wrote: > Hello, >=20 > Carsten Dominik writes: >=20 >> On 3.9.2013, at 17:32, Matt Price wrote: >>=20 >>> Hi, >>>=20 >>> certain lines are not rendered by the org exporter, but are instead >>> interpreted as instructions, e.g.: >>>=20 >>> #+AUTHOR: Matt Price >>>=20 >>> I'm using org2blog/wp, which is only partially converted to the new >>> exporter. It works pretty well, but not perfectly. It has the neat >>> feature that, when I insert a link to a local image, it will upload >>> that image to wordpress and link to the uploaded file. TO keep = track >>> of the location of those images, it writes lines like this to the = org >>> file: >>>=20 >>> #+/home/matt/Matt_headshots/Matt Price/IMG_9367_.jpg >>> = http://2013.hackinghistory.ca/wp-content/uploads/2013/08/wpid-IMG_9367_2.j= pg >>>=20 >>> Recently I've noticed that these lines are actually being rendered = by >>> the underlying html exporter before export. >>=20 >> I don't think this is the right behavior, such lines should not be = rendered. >> Suvayu is right, with a space after the # they are treated as = commendt, but I think >> they should also be ignored with the plus. >>=20 >> Nicolas, what is the reasoning behind rendering them? >=20 > Because this isn't valid Org syntax, so it is treated as regular text > (i.e. a paragraph). Something similar happens for unbalanced blocks: >=20 > * H >=20 > #+begin_example >=20 > * H2 >=20 > In the example above, "#+begin_example" is treated as a paragraph. >=20 > In both cases, silently ignoring them could cause more trouble that it > would solve. So in a way this is a "syntax error" message. :) OK, I get that point. Is that behaviour documented? Thanks - Carsten=