From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [ANN] ASCII back-end for new export engine Date: Sat, 28 Jan 2012 22:32:26 +0100 Message-ID: <87wr8bpl79.fsf@gmail.com> References: <87pqec4xua.fsf@gmail.com> <87lip04pyy.fsf@gmail.com> <87hazo3wdl.fsf@gmail.com> <878vksq6d9.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrFur-0000Sp-6w for emacs-orgmode@gnu.org; Sat, 28 Jan 2012 16:34:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RrFup-0004fm-O2 for emacs-orgmode@gnu.org; Sat, 28 Jan 2012 16:34:33 -0500 Received: from mail-wi0-f169.google.com ([209.85.212.169]:38757) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrFup-0004fg-Fk for emacs-orgmode@gnu.org; Sat, 28 Jan 2012 16:34:31 -0500 Received: by wibhj13 with SMTP id hj13so2966934wib.0 for ; Sat, 28 Jan 2012 13:34:30 -0800 (PST) In-Reply-To: (Samuel Wales's message of "Sat, 28 Jan 2012 13:50:45 -0700") 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: Samuel Wales Cc: Org Mode List Samuel Wales writes: > On 2012-01-28, Nicolas Goaziou wrote: >> If you don't know which one it is, you can successively mark each table >> in that buffer and use org-export-dispatch with the region active (it >> will only export the region) until the culprit is found. > > I get "Before first headline at position ..." error. Can't send stack > trace now. Ok. Be sure to have latest git, though. >> (org-e-ascii-verbatim-format). That will affect ~code~, =verbatim= and >> inline src blocks. > > Can these be affected individually? No. > Or can emphasis be told to be always left in verbatim? Yes. Simply override actual function translating verbatim text by putting this in your config. #+begin_src emacs-lisp (defun org-e-ascii-verbatim (verbatim contents info) "Return a VERBATIM object from Org to ASCII. CONTENTS is nil. INFO is a plist holding contextual information." (let ((marker (org-element-get-property :marker verbatim)) (value (org-element-get-property :value verbatim))) (concat marker value marker))) #+end_src > 1) Notice how it is set off so you know when the end of the list is? - This is an item with some text. This is obviously inside the list. This is obviously outside the list. >>> Feature requesti --export tables using tab characters. If it doesn't >>> exist already. Maybe it does? >> >> Do you mean inserting tabs instead of white spaces in cells? If that's >> the case, I'd rather not implement it. > > No, I mean that this is a useful way to send things to people who use > proportional fonts. But in the simplest cases, tables will look ugly with proportional fonts, no matter if you use tabs or not. It isn't worth the struggle. Regards, -- Nicolas Goaziou