emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Christian Moe <mail@christianmoe.com>
To: Nicolas Goaziou <n.goaziou@gmail.com>
Cc: Alexander Baier <lexi.baier@gmail.com>, emacs-orgmode@gnu.org
Subject: Re: [Exporter] Export of property drawers
Date: Thu, 09 May 2013 22:01:24 +0200	[thread overview]
Message-ID: <m2ip2rx6qz.fsf@vpn-client437.uio.no> (raw)
In-Reply-To: <87fvxwni3q.fsf@gmail.com>


Hi,

Nicolas, do I understand correctly that the contents of a property
drawer will not export? 

Back before I switched to the new exporter, all
I had to do to export properties was to add

#+OPTIONS: d:t 

but I notice this doesn't work, nor does d:(PROPERTIES).

Properties are sometimes used to make simple databases of useful
stuff. (I compiled a bunch of research notes like that just before
before switching to the new exporter!) It would be nice to have an easy
way to print them without having to figure out how to do it with filters
or defadvices.

Yours,
Christian



Nicolas Goaziou writes:

> Hello,
>
> Alexander Baier <lexi.baier@gmail.com> writes:
>
>> 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.
>
> You can either define a new back-end, as you did, or defadvice the
> current one.
>>
>> 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
>
> There is no `:properties' attribute for property drawers. Also you are
> mixing translators and filters: arguments for translators are ELEMENT
> CONTENTS INFO. Use, for example:
>
>  (defun my-ascii-property-drawer (drawer contents info)
>    contents)
>
>
>> (org-export-define-derived-backend 'my-ascii 'ascii
>>   :translate-alist '((template .
>>                       org-tut-ascii-translater-property-drawer)))
>
> Replace `template' with `property-drawer'. You also need to define
> a translator for `node-property' elements, e.g.,
>
>   (defun my-ascii-node-property (node-prop contents info)
>     (concat (org-element-property :key node-prop)
>             ": "
>             (org-element-property :value node-prop)))
>
> and
>
>   (org-export-define-derived-backend 'my-ascii 'ascii
>     :translate-alist '((property-drawer . my-ascii-property-drawer)
>                        (node-property . my-ascii-node-property)))
>
>
> Regards,

  reply	other threads:[~2013-05-09 19:58 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-09 16:46 [Exporter] Export of property drawers Alexander Baier
2013-05-09 18:13 ` Nicolas Goaziou
2013-05-09 20:01   ` Christian Moe [this message]
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=m2ip2rx6qz.fsf@vpn-client437.uio.no \
    --to=mail@christianmoe.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=lexi.baier@gmail.com \
    --cc=n.goaziou@gmail.com \
    /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).