org-export: Add a filter for export options

* contrib/lisp/org-export.el (org-export-filters-alist): Install a new
  filter to modify export options.
(org-export-filter-options-functions): New variable.
(org-export-as): Call new filter.
This commit is contained in:
Nicolas Goaziou 2013-01-27 21:41:21 +01:00
parent d6c3bd9c42
commit 8d431b7313

View file

@ -209,6 +209,7 @@ way they are handled must be hard-coded into
(:filter-link . org-export-filter-link-functions) (:filter-link . org-export-filter-link-functions)
(:filter-macro . org-export-filter-macro-functions) (:filter-macro . org-export-filter-macro-functions)
(:filter-node-property . org-export-filter-node-property-functions) (:filter-node-property . org-export-filter-node-property-functions)
(:filter-options . org-export-filter-options-functions)
(:filter-paragraph . org-export-filter-paragraph-functions) (:filter-paragraph . org-export-filter-paragraph-functions)
(:filter-parse-tree . org-export-filter-parse-tree-functions) (:filter-parse-tree . org-export-filter-parse-tree-functions)
(:filter-plain-list . org-export-filter-plain-list-functions) (:filter-plain-list . org-export-filter-plain-list-functions)
@ -2142,10 +2143,15 @@ Any element in `:ignore-list' will be skipped when using
;; among the following symbols and a function or a list of functions ;; among the following symbols and a function or a list of functions
;; as value. ;; as value.
;; ;;
;; - `:filter-parse-tree' applies directly on the complete parsed ;; - `:filter-options' applies to the property list containing export
;; tree. It's the only filters set that doesn't apply to a string. ;; options. Unlike to other filters, functions in this list accept
;; Users can set it through `org-export-filter-parse-tree-functions' ;; two arguments instead of three: the property list containing
;; variable. ;; export options and the back-end. Users can set its value through
;; `org-export-filter-options-functions' variable.
;;
;; - `:filter-parse-tree' applies directly to the complete parsed
;; tree. Users can set it through
;; `org-export-filter-parse-tree-functions' variable.
;; ;;
;; - `:filter-final-output' applies to the final transcoded string. ;; - `:filter-final-output' applies to the final transcoded string.
;; Users can set it with `org-export-filter-final-output-functions' ;; Users can set it with `org-export-filter-final-output-functions'
@ -2200,6 +2206,12 @@ back-end currently used, as a symbol.")
;;;; Special Filters ;;;; Special Filters
(defvar org-export-filter-options-functions nil
"List of functions applied to the export options.
Each filter is called with two arguments: the export options, as
a plist, and the back-end, as a symbol. It must return
a property list containing export options.")
(defvar org-export-filter-parse-tree-functions nil (defvar org-export-filter-parse-tree-functions nil
"List of functions applied to the parsed tree. "List of functions applied to the parsed tree.
Each filter is called with three arguments: the parse tree, as Each filter is called with three arguments: the parse tree, as
@ -2207,13 +2219,6 @@ returned by `org-element-parse-buffer', the back-end, as
a symbol, and the communication channel, as a plist. It must a symbol, and the communication channel, as a plist. It must
return the modified parse tree to transcode.") return the modified parse tree to transcode.")
(defvar org-export-filter-final-output-functions nil
"List of functions applied to the transcoded string.
Each filter is called with three arguments: the full transcoded
string, the back-end, as a symbol, and the communication channel,
as a plist. It must return a string that will be used as the
final export output.")
(defvar org-export-filter-plain-text-functions nil (defvar org-export-filter-plain-text-functions nil
"List of functions applied to plain text. "List of functions applied to plain text.
Each filter is called with three arguments: a string which Each filter is called with three arguments: a string which
@ -2221,6 +2226,13 @@ contains no Org syntax, the back-end, as a symbol, and the
communication channel, as a plist. It must return a string or communication channel, as a plist. It must return a string or
nil.") nil.")
(defvar org-export-filter-final-output-functions nil
"List of functions applied to the transcoded string.
Each filter is called with three arguments: the full transcoded
string, the back-end, as a symbol, and the communication channel,
as a plist. It must return a string that will be used as the
final export output.")
;;;; Elements Filters ;;;; Elements Filters
@ -2577,9 +2589,7 @@ specified filters, if any, are called first."
(defun org-export-install-filters (info) (defun org-export-install-filters (info)
"Install filters properties in communication channel. "Install filters properties in communication channel.
INFO is a plist containing the current communication channel. INFO is a plist containing the current communication channel.
Return the updated communication channel." Return the updated communication channel."
(let (plist) (let (plist)
;; Install user defined filters with `org-export-filters-alist'. ;; Install user defined filters with `org-export-filters-alist'.
@ -2706,8 +2716,13 @@ Return code as a string."
(cons "email" (or (plist-get info :email) "")) (cons "email" (or (plist-get info :email) ""))
(cons "title" (cons "title"
(org-element-interpret-data (plist-get info :title))))) (org-element-interpret-data (plist-get info :title)))))
;; Eventually parse buffer. Call parse-tree filters to get ;; Call options filters and update export options. We do not
;; the final tree. ;; use `org-export-filter-apply-functions' here since the
;; arity of such filters is different.
(dolist (filter (plist-get info :filter-options))
(let ((result (funcall filter info backend)))
(when result (setq info result))))
;; Parse buffer and call parse-tree filter on it.
(setq tree (setq tree
(org-export-filter-apply-functions (org-export-filter-apply-functions
(plist-get info :filter-parse-tree) (plist-get info :filter-parse-tree)