I have a document using a custom environment in the listings package. So I have code embedded like so
\begin{tawny}
(println "hello")
\end{tawny}
My plan is to use some Javascript syntax high-lighter to render this. So I have added this into my cf.cfg file.
\Preamble{html}
\ConfigureEnv{tawny}
{\HCode{<stuff>}}
{\HCode{</stuff>}}{}{}
\begin{document}
\EndPreamble
Obviously I want to change to something sane later. At the moment, though, this does not seem to be affected the rendering of the {tawny} environment. Have I got something wrong with my cf.cfg?