I use the listings package and I want to override an attribute of the HTML style.
Unfortunately my code overrides the whole HTML style and not just a single property:
\lstloadlanguages{HTML}
\lstdefinelanguage{HTML}{ndkeywords={charset, window, document}}
Does anyone know how I can only override ndkeywords?
\lstset{emph={charset,window,document},emphstyle={\color{green!50!black}}}(for reference see page 17 of the documentation) – cmhughes Feb 6 at 2:03