From: Alexander Baier <lexi.baier@gmail.com>
To: emacs-orgmode@gnu.org
Subject: [Exporter] Export of property drawers
Date: Thu, 09 May 2013 18:46:26 +0200 [thread overview]
Message-ID: <87r4hgxfrx.fsf@gmail.com> (raw)
Hello,
i want to export property drawers of an org-file to ASCII. How do I do
this? I got the impression, that the exporter does not touch the
properties drawers. So I started to fiddle with the exporter but got no
satisfying results out of it.
This is what i tried so far:
The elisp i wrote in this process:
===============================================================================
(defun org-tut-ascii-translater-property-drawer (drawer backend info)
(let ((prop (org-element-property :properties drawer)))
(format "%S" prop))) ;; i just wanted to see, if anything arrives here
(org-export-define-derived-backend 'my-ascii 'ascii
:translate-alist '((template .
org-tut-ascii-translater-property-drawer)))
===============================================================================
This are my ERT-tests:
===============================================================================
(ert-deftest org-tut-export-test ()
(with-temp-buffer
(org-mode)
(let ((org-export-show-temporary-export-buffer nil))
(insert (org-tut-test-contents))
(org-export-to-buffer 'my-ascii "*Org ASCII Export*" nil nil t nil)
(should (eql (org-tut-result)
(with-current-buffer "*Org ASCII Export*"
(buffer-substring-no-properties
(point-min) (point-max)))))
)
)
)
(defun org-tut-test-contents ()
nil
"* Alex
:PROPERTIES:
:MATNR: 1234567
:END:
** Task 1
*** Subtask 1.1
:PROPERTIES:
:POINTS: 5
:END:
")
(defun org-tut-result ()
nil
"1 Alex
======
Matnr=1234567
1.1 Task 1
~~~~~~~~~~
1.1.1 Subtask 1.1
-----------------
Points: 5
")
===============================================================================
Upon exporting I only get the headlines, without any properties related
stuff.
If you need any further info, I will gladly provide it.
Regards,
Alex
next reply other threads:[~2013-05-09 16:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-09 16:46 Alexander Baier [this message]
2013-05-09 18:13 ` [Exporter] Export of property drawers Nicolas Goaziou
2013-05-09 20:01 ` Christian Moe
2013-05-10 8:17 ` Nicolas Goaziou
2013-05-10 13:37 ` Christian Moe
2013-05-10 13:14 ` Alexander Baier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r4hgxfrx.fsf@gmail.com \
--to=lexi.baier@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).