From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: [BUG] Inconsistency in src block hiding Date: Wed, 18 Jan 2012 09:19:16 -0700 Message-ID: <87pqehrnjv.fsf@gmx.com> References: <8739djqfkv.fsf@gmail.com> <87fwhiwwr0.fsf@gmail.com> <87bos6pp1a.fsf@gmail.com> <8739dhnxjs.fsf@gmail.com> <87ipmcxboo.fsf@gmail.com> <87pqgjipu8.fsf@gmail.com> <87y5v6x3lv.fsf@gmail.com> <87fwh86533.fsf@gmail.com> <87ehwbdxk2.fsf@gnu.org> <874nx782wi.fsf@gmx.com> <87lip76p48.fsf@norang.ca> <87d3ai2p98.fsf@gmail.com> <8762ga6whl.fsf@norang.ca> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:57818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnYHI-0006hc-6c for emacs-orgmode@gnu.org; Wed, 18 Jan 2012 11:22:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnYHC-0002uy-8r for emacs-orgmode@gnu.org; Wed, 18 Jan 2012 11:22:24 -0500 Received: from mailout-us.gmx.com ([74.208.5.67]:40202) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RnYHC-0002ut-3k for emacs-orgmode@gnu.org; Wed, 18 Jan 2012 11:22:18 -0500 In-Reply-To: (Rick Frankel's message of "Wed, 18 Jan 2012 11:02:59 -0500") 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: Rick Frankel Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Rick Frankel writes: > On 18.01.2012 05:45, Leo Alekseyev wrote: >>>> Why can't you? Wouldn't it be related to drawers configuration >>>> (org-export-with-drawers for example)? >>> >>> Yes... but I don't think I can configure which drawers I get, and I >>> don't want my LOGBOOK drawer with all my clock lines in my export. >>> >>> -Bernt >>>> >>>>> Is there still a way to hide results output with the current >>>>> master? >>>> >>>> Yes, within a drawer. >> >> Yes, but is it possible to hide the drawer name in the HTML export? >> If drawers are designed to be used as an organization device (and not >> an outlining device), the drawer delimiters shouldn't be exported to >> HTML. > > It's worse than that. Once wrapped in a RESULTS drawer, the output is > no longer export. > > I aggree w/ Bernt, this has been a major annoyance for me, in fact, i > was going to post it as a regession (not having seen the original > post). > > I use org-mode for generating a lot of self-documenting code (w/o > noweb). I generate large images and data tables which i want in the > export, but don't normally want to see while working in the source > file. > Well maybe we should roll back this change. It was an attempt to bring code block syntax more /inline/ with the rest of Org-mode, but if it proves to cause usability problems I think that trumps clean design. I'll wait to see if Nicolas has a solution which is both functional and conforms to the Org-mode wide syntax norms. In the mean time the solution used in the following Org-mode file should provide the desired functionality. --=-=-= Content-Type: text/x-org Content-Disposition: inline; filename=folding-results.org #+Property: wrap results #+BEGIN_SRC emacs-lisp :exports results '((1 2 3 4) (5 6 7 8)) #+END_SRC #+results: #+BEGIN_results | 1 | 2 | 3 | 4 | | 5 | 6 | 7 | 8 | #+END_results --=-=-= Content-Type: text/plain Best, > > rick > -- Eric Schulte http://cs.unm.edu/~eschulte/ --=-=-=--