[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: org-->html text between @ should be red.
From: |
Juan Manuel Macías |
Subject: |
Re: org-->html text between @ should be red. |
Date: |
Sat, 15 Jan 2022 18:21:47 +0000 |
Uwe Brauer writes:
> Can I have a similar setting when exporting an org file to html via the
> «normal» html exporter?
Using a custom filter?
#+begin_src emacs-lisp
(defun foo (text backend info)
(when (org-export-derived-backend-p backend 'html)
(replace-regexp-in-string "@\\([^@]*\\)@"
"<span style=\"color:red\">\\1</span>"
text)))
(add-to-list 'org-export-filter-final-output-functions 'foo)
#+end_src
Best regards,
Juan Manuel
Re: org-->html text between @ should be red., Timothy, 2022/01/15