Hi András,
Am Sonntag, den 28. Juli 2024 um 21:56:16 Uhr (+0200) schrieb András
Simonyi:
> a long shot, but maybe you haven't set the variable
> =org-export-allow-bind-keywords= to a non-nil value?
that was it, thanks so much! I wasn't aware of that variable.
--
Orm
Dear All,
On Sun, 28 Jul 2024 at 21:22, Orm Finnendahl
wrote:
>
> Trying to define a file local filter doesn't work:
>
> #+BIND: org-export-filter-final-output-functions (hiho)
> #+BEGIN_SRC emacs-lisp :exports results :results none
> (defun hiho (s backend info)
> (message "HiHo")
> s)
Hi,
I'm trying to define a filter function local to a file for the final
output filter, but it doesn't seem to work.
This works:
#+BEGIN_SRC emacs-lisp :exports results :results none
(defun hiho (s backend info)
(message "HiHo")
s)
(add-to-list 'org-export-filter-final-output-functi