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
1 changed files with 2 additions and 0 deletions

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)))))