From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Capitalisation and good taste ? Date: Tue, 10 Jan 2012 02:37:24 -0500 Message-ID: <24991.1326181044@gamaville.dokosmarshall.org> References: <87k4509rc1.fsf@iro.umontreal.ca> <87aa5wcitv.fsf@norang.ca> <23144.1326172391@gamaville.dokosmarshall.org> <8762gk9l27.fsf@iro.umontreal.ca> Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:35583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RkWGu-0006uJ-Tu for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 02:37:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RkWGt-00057k-Pd for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 02:37:28 -0500 Received: from g1t0028.austin.hp.com ([15.216.28.35]:46928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RkWGt-00057e-K4 for emacs-orgmode@gnu.org; Tue, 10 Jan 2012 02:37:27 -0500 In-Reply-To: Message from pinard@iro.umontreal.ca (=?us-ascii?Q?=3D=3Futf-?= =?us-ascii?Q?8=3FQ=3FFran=3DC3=3DA7ois=3F=3D?= Pinard) of "Tue\, 10 Jan 2012 00\:35\:28 EST." <8762gk9l27.fsf@iro.umontreal.ca> 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: =?us-ascii?Q?=3D=3Futf-8=3FQ=3FFran=3DC3=3DA7?= =?us-ascii?Q?ois=3F=3D?= Pinard Cc: Bernt Hansen , nicholas.dokos@hp.com, emacs-orgmode@gnu.org Fran=C3=A7ois Pinard wrote: > P.S. By the way, the node mentions "#+begin_ascii", but the manual does > not tell about what it is. (Or at least "t s begin_ascii RET s RET" in > the Info node only finds the Easy Templates reference.) >=20 In general, #+begin_foo ... #+end_foo will include the contents of the block for foo export but get rid of it for non-foo export. So if you don't intend to export to ascii, you can use an ascii block to include comments in your file (and similarly for other formats). Of course, you can also use #+begin_comment...#+end_comment, but afaict, there is an inconsistency here: the latter can not be indented, whereas the other blocks can. I haven't tried this with org-indent-mode though[fn:1]. > P.P.S. How about amending the manual for consistent capitalization? >=20 Knock yourself out! ;-) Nick Footnotes: [fn:1] Here is a test file: --8<---------------cut here---------------start------------->8--- * foo export #+begin_ascii This is not exported in anything other than ascii. #+end_ascii #+begin_comment foo #+end_comment #+begin_example This is exported in anything.=20=20 #+end_example #+begin_html This is not exported in anything other than html. #+end_html #+begin_latex This is not exported in anything other than latex. #+end_latex --8<---------------cut here---------------end--------------->8---