From: John Kitchin <johnrkitchin@gmail.com>
To: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Cc: emacs-orgmode@gnu.org, John Kitchin <johnrkitchin@gmail.com>
Subject: Re: question about org-element-map missing link in caption
Date: Tue, 27 Jan 2015 08:48:52 -0500 [thread overview]
Message-ID: <m2twzcs5a3.fsf@gmail.com> (raw)
In-Reply-To: <87k3084h9s.fsf@nicolasgoaziou.fr>
Thanks that is what I needed!
I tried it, and indeed the links in captions are found, but something is
still not right. The :begin properties of the links in the caption seem
to be relative to the point after the : in the caption. That isn't
obvious and makes it hard to store a marker to the link. Is that
expected behavior?
* test links
#+caption: some text label:test3 cite:needs-1989-cal
| a | b |
| 1 | 3 |
citenum:needs-1989-calcu
#+BEGIN_SRC emacs-lisp :results code
(org-element-map (org-element-parse-buffer) 'link
(lambda (link)
(cons
(org-element-property :path link)
(org-element-property :begin link)))
nil nil nil t)
#+END_SRC
#+RESULTS:
#+BEGIN_SRC emacs-lisp
(("test3" . 11)
("needs-1989-cal" . 24)
("needs-1989-calcu" . 91))
#+END_SRC
(goto-char 11) This goes into the headline
(goto-char 24) This goes to the : in the caption
(goto-char 91) This goes exactly where I expect
Nicolas Goaziou writes:
> Hello,
>
> John Kitchin <johnrkitchin@gmail.com> writes:
>
>> In the following org document, org-element-map only finds one link, but
>> the buffer acts like there are two links. The free link is found, but
>> the link label buried in the caption is not found. However, it exports
>> correctly, and the caption link is clickable, so the buffer certainly
>> thinks it is a link. Is this expected behavior?
>
> It is. By default, `org-element-map' doesn't look into captions. See
> WITH-AFFILIATED optional argument.
>
>
> Regards,
--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu
next prev parent reply other threads:[~2015-01-27 13:49 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-27 0:13 question about org-element-map missing link in caption John Kitchin
2015-01-27 11:03 ` Nicolas Goaziou
2015-01-27 13:48 ` John Kitchin [this message]
2015-01-27 14:46 ` Nicolas Goaziou
2015-01-27 15:53 ` John Kitchin
2015-01-27 21:35 ` Nicolas Goaziou
2015-01-27 22:05 ` John Kitchin
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=m2twzcs5a3.fsf@gmail.com \
--to=johnrkitchin@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=mail@nicolasgoaziou.fr \
/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).