ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> scintilla-interest
scintilla-interest
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

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved