From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: How to show the complete syntax tree Date: Mon, 14 Jul 2014 09:37:26 +0200 Message-ID: <8738e4o0g9.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6apY-0006Bn-VX for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 03:37:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X6apR-0008KA-GQ for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 03:37:48 -0400 Received: from plane.gmane.org ([80.91.229.3]:43542) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6apR-0008Ja-9t for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 03:37:41 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X6apQ-00023J-5O for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 09:37:40 +0200 Received: from e178190254.adsl.alicedsl.de ([85.178.190.254]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jul 2014 09:37:40 +0200 Received: from tjolitz by e178190254.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jul 2014 09:37:40 +0200 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 Shiyuan writes: > [...] > For example, if the current org buffer has the following content: > > #+TITLE: Hello World > Hello World! > * HEADLINE 1 > ** Sub-topic > + ItemA > + ItemB > - Item1 > - Item2 > *** Sub-Sub-topic > \begin{equation} > \label{eq:test} > Bx=b > \end{equation} > [...] Following up in outorg, I evaluate this in the *outorg-edit-buffer*: #+begin_src emacs-lisp :results raw (org-element-parse-buffer 'object) #+end_src #+results: (org-data nil (headline (:raw-value --text follows this line-- :begin 1 :end 1604 [...] > For example, if the current org buffer has the following content: > > #+TITLE: Hello World > Hello World! > * HEADLINE 1 > ** Sub-topic > + ItemA > + ItemB > - Item1 > - Item2 > (bold (:begin 533 :end 537 :contents-begin 534 :contents-end 535 > :post-blank 1 :parent #3) *) Sub-Sub-topic > (latex-fragment (:value \begin{equation} :begin 553 :end 569 > :post-blank 0 :parent #3)) > (latex-fragment (:value \label{eq:test} :begin 572 :end 587 > :post-blank 0 :parent #3)) > Bx=b > (latex-fragment (:value \end{equation} :begin 597 :end 611 > :post-blank 0 :parent #3)) [...] -- cheers, Thorsten