emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Marcin Antczak <marcin.antczak@neutrico-themes.pl>
To: Nicolas Goaziou <n.goaziou@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: How to export drawer?
Date: Fri, 04 Apr 2014 23:06:11 +0200	[thread overview]
Message-ID: <87ob0gajp8.fsf@neutrico-themes.pl> (raw)
In-Reply-To: <87zjk07vwu.fsf@gmail.com>


Nicolas Goaziou writes:

> Hello,
>
> Marcin Antczak <marcin.antczak@neutrico-themes.pl> writes:
>
>> I would like to export some org to html with custom backend based on
>> 'html.
>>
>> What I need is to override function org-html-headline from ox-html.el
>
> OK. But this isn't related to drawers, is it? If you want to alter
> drawers export, you need to override `org-html-drawer' too.

Unfortunately you misunderstood me.

What I want to do is to override drawers export to exclude some
predefined drawers. Let's say: LOGBOOK and CLOCKTABLE.

Then I want to attach these drawers to headline(!)
This is why I want to add a piece of code to return drawer in org-html-headline.

>
>> I just want to export drawer with some specific name. For example
>> LOGBOOK or CLOCKTABLE.
>
> You can set `org-export-with-drawers'. You can also hard-code the list
> into `org-mybackend-drawer':
>
>   (defun org-mybackend-drawer (drawer contents info)
>     (when (member-ignore-case (org-element-property :drawer-name drawer)
>                               '("LOGBOOK" "CLOCKTABLE"))
>       (org-export-data-with-backend drawer 'html info)))

Yes. I want to hard-code these drawers and ignore them in default export.

Anyway thing is that I want to export drawer with specific name while
I'm in org-html-headline function.

(defun org-html-headline (headline contents info)
  "Transcode a HEADLINE element from Org to HTML.
CONTENTS holds the contents of the headline.  INFO is a plist
holding contextual information."
  ;; Empty contents?
  (setq contents (or contents ""))
  (let* ((numberedp (org-export-numbered-headline-p headline info))
         (level (org-export-get-relative-level headline info))

         And here I wan't to add:

         (clocktable (and (plist-get info :with-drawers)
                  (let* ((drawers (org-element-map headline 'drawer 'identity info nil 'headline)))
                    (mapconcat (lambda (d)
                                 (when (string= (org-element-property :drawer-name d) "CLOCKTABLE")
                                   (org-export-data-with-backend d 'html info)))
                               drawers ""))))


In this way I could attach HTML code with CLOCKTABLE drawer to headline.
Unfortunately as I mentioned before I don't know how to achieve this
without recursion. My code returns all CLOCKTABLE drawers in child
tasks.

org-element-map has optional argument 'no-recursion' but I don't know
how to set it up properly.


Regards,

--
Marcin

  reply	other threads:[~2014-04-04 21:07 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-04  9:25 How to export drawer? Marcin Antczak
2014-04-04 19:10 ` Nicolas Goaziou
2014-04-04 21:06   ` Marcin Antczak [this message]
2014-04-04 21:49     ` Nicolas Goaziou
2014-04-04 22:06       ` Marcin Antczak

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=87ob0gajp8.fsf@neutrico-themes.pl \
    --to=marcin.antczak@neutrico-themes.pl \
    --cc=emacs-orgmode@gnu.org \
    --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).