|
@@ -868,7 +868,7 @@ modified) list.")
|
|
|
"LINK_UP" "LINK_HOME" "SETUPFILE" "STYLE"
|
|
|
"EXPORT_SELECT_TAGS" "EXPORT_EXCLUDE_TAGS")
|
|
|
(mapcar 'car org-export-inbuffer-options-extra))))
|
|
|
- p key val text options js-up js-main js-css js-opt a pr
|
|
|
+ p key val text options js-up js-main js-css js-opt a pr style
|
|
|
ext-setup-or-nil setup-contents (start 0))
|
|
|
(while (or (and ext-setup-or-nil
|
|
|
(string-match re ext-setup-or-nil start)
|
|
@@ -886,7 +886,8 @@ modified) list.")
|
|
|
((string-equal key "EMAIL") (setq p (plist-put p :email val)))
|
|
|
((string-equal key "DATE") (setq p (plist-put p :date val)))
|
|
|
((string-equal key "LANGUAGE") (setq p (plist-put p :language val)))
|
|
|
- ((string-equal key "STYLE") (setq p (plist-put p :style-extra val)))
|
|
|
+ ((string-equal key "STYLE")
|
|
|
+ (setq style (concat style "\n" val)))
|
|
|
((string-equal key "TEXT")
|
|
|
(setq text (if text (concat text "\n" val) val)))
|
|
|
((string-equal key "OPTIONS")
|
|
@@ -912,6 +913,7 @@ modified) list.")
|
|
|
"\n" setup-contents "\n"
|
|
|
(substring ext-setup-or-nil start)))))))
|
|
|
(setq p (plist-put p :text text))
|
|
|
+ (if style (setq p (plist-put p :style-extra style)))
|
|
|
(when options
|
|
|
(setq p (org-export-add-options-to-plist p options)))
|
|
|
p))))
|