|
@@ -88,8 +88,9 @@
|
|
|
;; * properties
|
|
|
;; * drawers
|
|
|
;; * oh my
|
|
|
-;; * optmization (many plist extracts should be in (let) vars
|
|
|
+;; * optmization (many plist extracts should be in let vars)
|
|
|
;; * define defcustom spec for the specifier list
|
|
|
+;; * fonts: at least monospace is not handled at all here.
|
|
|
;;
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
;;
|
|
@@ -638,10 +639,14 @@ underlined headlines. The default is 3."
|
|
|
(or (plist-get export-plist :body-list-checkbox-done-end) ""))
|
|
|
(listcheckhalfend
|
|
|
(or (plist-get export-plist :body-list-checkbox-half-end) ""))
|
|
|
+ (bodynewline-paragraph (plist-get export-plist :body-newline-paragraph))
|
|
|
(bodytextpre (plist-get export-plist :body-text-prefix))
|
|
|
(bodytextsuf (plist-get export-plist :body-text-suffix))
|
|
|
(bodylinewrap (plist-get export-plist :body-line-wrap))
|
|
|
(bodylineform (or (plist-get export-plist :body-line-format) "%s"))
|
|
|
+ (blockquotestart (or (plist-get export-plist :blockquote-start) "\n\n\t"))
|
|
|
+ (blockquoteend (or (plist-get export-plist :blockquote-end) "\n\n"))
|
|
|
+
|
|
|
|
|
|
thetoc toctags have-headings first-heading-pos
|
|
|
table-open table-buffer link-buffer link desc desc0 rpl wrap)
|
|
@@ -868,7 +873,7 @@ underlined headlines. The default is 3."
|
|
|
|
|
|
((string-match "^\\([ \t]*\\)\\(:\\( \\|$\\)\\)" line)
|
|
|
;;
|
|
|
- ;; pre-formated text
|
|
|
+ ;; pre-formatted text
|
|
|
;;
|
|
|
(setq line (replace-match "\\1" nil nil line))
|
|
|
|
|
@@ -933,6 +938,15 @@ underlined headlines. The default is 3."
|
|
|
)
|
|
|
|
|
|
(insert (format numlistformat line)))
|
|
|
+
|
|
|
+ ((equal line "ORG-BLOCKQUOTE-START")
|
|
|
+ (setq line blockquotestart))
|
|
|
+ ((equal line "ORG-BLOCKQUOTE-END")
|
|
|
+ (setq line blockquoteend))
|
|
|
+ ((string-match "^\\s-*$" line)
|
|
|
+ ;; blank line
|
|
|
+ (if bodynewline-paragraph
|
|
|
+ (insert "\n")))
|
|
|
(t
|
|
|
;;
|
|
|
;; body
|
|
@@ -1009,6 +1023,7 @@ underlined headlines. The default is 3."
|
|
|
(goto-char beg)))
|
|
|
(goto-char (point-min))))
|
|
|
|
|
|
+
|
|
|
(defun org-export-generic-format (export-plist prop &optional len n reverse)
|
|
|
"converts a property specification to a string given types of properties
|
|
|
|