ox: Insert templates with lower case keywords

* lisp/ox.el (org-export-insert-default-template): Insert lower case
  keywords.
This commit is contained in:
Nicolas Goaziou 2019-02-28 19:39:39 +01:00
parent 8a2f4a21a9
commit 92c3b76dd8
1 changed files with 2 additions and 2 deletions

View File

@ -3216,7 +3216,7 @@ locally for the subtree through node properties."
(org-entry-put
node "EXPORT_OPTIONS" (mapconcat 'identity items " "))
(while items
(insert "#+OPTIONS:")
(insert "#+options:")
(let ((width 10))
(while (and items
(< (+ width (length (car items)) 1) fill-column))
@ -3242,7 +3242,7 @@ locally for the subtree through node properties."
(if subtreep (org-entry-put node (concat "EXPORT_" (car key)) val)
(insert
(format "#+%s:%s\n"
(car key)
(downcase (car key))
(if (org-string-nw-p val) (format " %s" val) ""))))))))
(defun org-export-expand-include-keyword (&optional included dir footnotes)