Jambunathan K writes:
> A few words of explanation from my side.
>
> Summary: Facilitate transparent plugging-in of per-backend
> pre-processing logic to the org exporter.
Thanks!
--
Bastien
___
Emacs-orgmode mailing list
Please use `Reply All' to
Bastien
>> + ;; Backend-specific preprocessing
>> + (let* ((backend-name (symbol-name backend))
>> + (f (intern (format "org-export-%s-preprocess" backend-name
>> +(require (intern (concat "org-" backend-name)) nil)
>> +(funcall f parameters))
A few words of explana