From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: fontification of blocks inside blocks Date: Thu, 27 Feb 2014 08:38:20 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37767) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIvY8-0000hc-Tj for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:38:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIvY1-0008SS-KW for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:38:32 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:53460) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIvY1-0008SK-EM for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:38:25 -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: emacs-orgmode Hello, I've just had to write an org block inside another org block, which looks like this: #+attr_latex: :options {0.5\textwidth} #+begin_column #+begin_src ocaml let o1 = object method m = 0 method p = "foo" end;; #+end_src #+end_column Unfortunately when I do so I lose the nice fontification of the ocaml code inside the inner block. Is there a way to get it back? Now for why I'm doing this and not using the usual headline with a "column" property: I want to put a vertical bar between the columns, so I need a "\vrule" after the first column is closed. Using headlines does not let me write anything between the columns. Thanks, Alan