From: Joon Ro <joon.ro@outlook.com>
To: Matt Price <moptop99@gmail.com>
Cc: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: Questions about using macro replacement
Date: Sat, 26 Aug 2017 23:56:26 +0000 [thread overview]
Message-ID: <BY2PR15MB042112C787E69A87D46F2532EB980@BY2PR15MB0421.namprd15.prod.outlook.com> (raw)
In-Reply-To: <CAN_Dec9si6wmwh=UJUa0nGjfiTB0uDS0mHqhK2ZzV0maD67KEg@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1854 bytes --]
Answering without full knowledge!
Thank you so much for the reply - your reply gave me several ideas. I think Q1 and Q3 are solved, but I still have no idea how to do Q2 or if it is possible.
Q1, I figured it out and started using it - the {{{n}}} macros are awesome!
2. I was wondering if it is possible use macro expansion for :EXPORT_FILE_NAME: property of a subtree?
Since macros can be set to expand to arbitrary elisp, I would think this *should* be possible. I forget the syntax but something like:
#+MACRO: efn (eval (get-export-file-name))
#+BEGIN_SRC emacs-lisp
(defun get-export-file-name ()
(org-element-property :export-file-name (org-element--current-element) ))
#+END_SRC
* some heading
:PROPERTIES
:EXPORT_FILE_NAME: test-me
:END:
will get you somewhat close. I don't understand the org-element api very well though and it generally takes me a few tries to get this sort of thing right.
With this one, I was actually looking for using macros inside :EXPORT_FILE_NAME: property. Ultimately what I want to do is:
* some heading
:PROPERTIES:
:EXPORT_FILE_NAME: {{{n('class',1)}}} test-me
:END:
However, it did not work, as the file name became literal {{{n('class',1)}}} test-me.pdf.
3. Is it possible to create a file link which uses macro? I would like to create a link to the exported pdf file dynamically. For example, if the value of :EXPORT_FILE_NAME: is exported, how would I create a link which automatically link to exported.pdf?
I don't think a macro will do this for you since, if I understand correctly, macros are not aware of the export target. So probably you would need some other mechanism to od this.
I figured it out using elisp link:
elisp:(org-open-link-from-string (concat "file:./" (org-entry-get nil "EXPORT_FILE_NAME") ".pdf"))
Best Regards,
Joon
[-- Attachment #2: Type: text/html, Size: 8242 bytes --]
prev parent reply other threads:[~2017-08-26 23:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-24 3:13 Questions about using macro replacement Joon Ro
2017-08-26 21:44 ` Matt Price
2017-08-26 23:56 ` Joon Ro [this message]
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=BY2PR15MB042112C787E69A87D46F2532EB980@BY2PR15MB0421.namprd15.prod.outlook.com \
--to=joon.ro@outlook.com \
--cc=emacs-orgmode@gnu.org \
--cc=moptop99@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).