From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martyn Jago Subject: Re: [ANN] ASCII back-end for new export engine Date: Sun, 22 Jan 2012 14:43:52 +0000 Message-ID: References: <87pqec4xua.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52532) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RoyeT-0007ql-Q6 for emacs-orgmode@gnu.org; Sun, 22 Jan 2012 09:44:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RoyeS-0003cu-QF for emacs-orgmode@gnu.org; Sun, 22 Jan 2012 09:44:13 -0500 Received: from lo.gmane.org ([80.91.229.12]:48081) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RoyeS-0003cf-LF for emacs-orgmode@gnu.org; Sun, 22 Jan 2012 09:44:12 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RoyeQ-00014u-UU for emacs-orgmode@gnu.org; Sun, 22 Jan 2012 15:44:10 +0100 Received: from 88-96-171-142.dsl.zen.co.uk ([88.96.171.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 22 Jan 2012 15:44:10 +0100 Received: from martyn.jago by 88-96-171-142.dsl.zen.co.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 22 Jan 2012 15:44:10 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Nicolas Nicolas Goaziou writes: > Hello, > > I've commited an ASCII back-end for new export engine. > > Assuming contrib directory is in your load-path, you just need to > (require 'org-export) to have both LaTeX and ASCII exporters ready to > boot. > > You can then access to the dispatcher with M-x org-export-dispatch and > test various configurations from there. > [...] I've been playing with (org-export-dispatch) with regard to some simple source blocks and have a couple of observations (apologies in advance if source blocks are not fully implemented yet). The test code is: --8<---------------cut here---------------start------------->8--- * Test #+begin_src emacs-lisp # :exports both ;; Add two numbers (+ 2 3) #+end_src #+results: : 5 --8<---------------cut here---------------end--------------->8--- 1) The commented out `# :exports both' appears to be exported as uncommented and relevant (actually, this appears to be true of the original exporter too). 2) If the source block is executed in buffer with (org-ctrl-c-ctrl-c), as shown above, then the exporter appears to export the in-buffer results /and/ the export-generated results (where :exports is results or both) resulting in two sets of identical results in the export. For the record, I much prefer your new Ascii layout, over that provided by the original exporter. HTH Best, Martyn