emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [Exporter] Export of property drawers


From: Alexander Baier
Subject: [O] [Exporter] Export of property drawers
Date: Thu, 09 May 2013 18:46:26 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]