1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-21 06:55:35 +00:00

Merge branch 'bugfix'

This commit is contained in:
Ihor Radchenko 2024-10-12 12:53:19 +02:00
commit a8da21874d
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B

View File

@ -9103,6 +9103,8 @@ keywords relative to each registered export backend."
(delq nil keywords))
;; Backend name (for keywords, like #+LATEX:)
(push (upcase (symbol-name (org-export-backend-name backend))) keywords)
;; Backend attributes, like #+ATTR_LATEX:
(push (format "ATTR_%s" (upcase (symbol-name (org-export-backend-name backend)))) keywords)
(dolist (option-entry (org-export-backend-options backend))
;; Backend options.
(push (nth 1 option-entry) keywords)))))