mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-22 07:09:47 +00:00
Merge branch 'maint'
This commit is contained in:
commit
ce748a7ed5
@ -886,7 +886,13 @@ is a plist used as a communication channel."
|
||||
(gethash link (plist-get info :exported-data)))
|
||||
(not (member footprint seen)))
|
||||
(push footprint seen) link)))))
|
||||
(org-element-map element 'link unique-link-p info nil nil t)))
|
||||
(org-element-map (if (eq (org-element-type element) 'section)
|
||||
element
|
||||
;; In a headline, only retrieve links in title
|
||||
;; and relative section, not in children.
|
||||
(list (org-element-property :title element)
|
||||
(car (org-element-contents element))))
|
||||
'link unique-link-p info nil 'headline t)))
|
||||
|
||||
(defun org-ascii--describe-links (links width info)
|
||||
"Return a string describing a list of links.
|
||||
|
Loading…
Reference in New Issue
Block a user