|
@@ -1456,25 +1456,10 @@ on this string to produce the exported version."
|
|
;; Remove comment environment and comment subtrees
|
|
;; Remove comment environment and comment subtrees
|
|
(org-export-remove-comment-blocks-and-subtrees)
|
|
(org-export-remove-comment-blocks-and-subtrees)
|
|
|
|
|
|
- ;; Remove special table lines
|
|
|
|
- (when org-export-table-remove-special-lines
|
|
|
|
- (org-export-remove-special-table-lines))
|
|
|
|
|
|
|
|
- ;; Specific LaTeX stuff
|
|
|
|
- (when latexp
|
|
|
|
- (require 'org-export-latex nil)
|
|
|
|
- (org-export-latex-preprocess))
|
|
|
|
|
|
|
|
- ;; Specific ASCII stuff
|
|
|
|
- (when asciip
|
|
|
|
- (org-export-ascii-preprocess))
|
|
|
|
|
|
|
|
- ;; Specific HTML stuff
|
|
|
|
- (when htmlp
|
|
|
|
- (org-export-html-preprocess parameters))
|
|
|
|
|
|
|
|
- ;; Remove or replace comments
|
|
|
|
- (org-export-handle-comments (plist-get parameters :comments))
|
|
|
|
|
|
|
|
;; Find matches for radio targets and turn them into internal links
|
|
;; Find matches for radio targets and turn them into internal links
|
|
(org-export-mark-radio-links)
|
|
(org-export-mark-radio-links)
|
|
@@ -1495,6 +1480,37 @@ on this string to produce the exported version."
|
|
(when (plist-get parameters :emph-multiline)
|
|
(when (plist-get parameters :emph-multiline)
|
|
(org-export-concatenate-multiline-emphasis))
|
|
(org-export-concatenate-multiline-emphasis))
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ ;; Remove special table lines
|
|
|
|
+ (when org-export-table-remove-special-lines
|
|
|
|
+ (org-export-remove-special-table-lines))
|
|
|
|
+
|
|
|
|
+ ;; Specific LaTeX stuff
|
|
|
|
+ (when latexp
|
|
|
|
+ (require 'org-export-latex nil)
|
|
|
|
+ (org-export-latex-preprocess))
|
|
|
|
+
|
|
|
|
+ ;; Specific ASCII stuff
|
|
|
|
+ (when asciip
|
|
|
|
+ (org-export-ascii-preprocess))
|
|
|
|
+
|
|
|
|
+ ;; Specific HTML stuff
|
|
|
|
+ (when htmlp
|
|
|
|
+ (org-export-html-preprocess parameters))
|
|
|
|
+
|
|
|
|
+ ;; Remove or replace comments
|
|
|
|
+ (org-export-handle-comments (plist-get parameters :comments))
|
|
|
|
+
|
|
|
|
+
|
|
(setq rtn (buffer-string)))
|
|
(setq rtn (buffer-string)))
|
|
(kill-buffer " org-mode-tmp")
|
|
(kill-buffer " org-mode-tmp")
|
|
rtn))
|
|
rtn))
|