Bastien <[email protected]> writes:
> Hi Jambunathan,
>
> I see this addition in one of the latest commit:
>
> +(defcustom org-export-odt-use-htmlfontify t
> + "Specify whether or not source blocks need to be fontified.
> +Turn this option on if you want to colorize the source code
> +blocks in the exported file. For colorization to work, you need
> +to make available an enhanced version of `htmlfontify' library."
>
> For now, the correct default value is `nil', otherwise users will
> encounter problems.
No. There is an in-built deprecation as below:
#+begin_src emacs-lisp
(if (and org-export-odt-use-htmlfontify
(or (featurep 'htmlfontify) (require 'htmlfontify))
(fboundp 'htmlfontify-string))
...)
#+end_src
htmlfontify-string is a function that is available only in the enhanced
version of htmlfontify.
> Also, this change only make sense when the enhanced version of
> htmlfontify.el is publicly available, so that we can point at a
> URL. I guess this will be the case soon :)
--