Re: [scintilla-interest] Bug coloring XML end tags
by Neil Hodgson other posts by this author
Oct 16 2000 1:11PM messages near this date
[scintilla-interest] Bug coloring XML end tags
|
RE: [scintilla-interest] Tab control for Win32 SciTE
> I think there is a bug when coloring empty (without content) XML tags.
These
> tags look like this: <tag/>.
> Scintilla does a fine job with regular tags <tag></tag> but with the empty
one
> the /> part is rendered black (however it seems it uses the same font).
There is a separate lexical class for tag endings - 11. The default
html.properties has some old dead values so it doesn't make sense. This will
be changed to:
# XML style tag ends '/> '
style.xml.11=fore:#000080
# XML identifier start '<?'
style.xml.12=fore:#800080,bold
# XML identifier end '?> '
style.xml.13=fore:#800080,bold
# CDATA
style.xml.17=fore:#800000,$(font.text)
# Question
style.xml.18=fore:#800000
# Unquoted Value
style.xml.19=fore:#608060
Neil
Thread:
Coco
Neil Hodgson
|