Search found 3 matches

by tehsolace
Wed Mar 25, 2009 9:23 pm
Forum: Enhancement Suggestions
Topic: Proper comment highlighting
Replies: 3
Views: 349

You're right, that should have been a <script> element.

Fixed 2nd example:

Code: Select all

<script type="text/javascript"><!--

function foo() {  }

//--></script><div>this line appears as a php comment... but i havent even written any php anywhere</div>
by tehsolace
Wed Mar 25, 2009 9:04 pm
Forum: Enhancement Suggestions
Topic: Proper comment highlighting
Replies: 3
Views: 349

Another example of improper comment coloring with the following settings: SyntaxStart = <?php SyntaxEnd = ?> CommentStart = /* CommentEnd = */ CommentStartAlt = CommentEndAlt = SingleComment = // Example: <style><!-- .some-css-here { width: auto; } //--></style><div>this line appears as a php ...
by tehsolace
Wed Mar 25, 2009 9:00 pm
Forum: Enhancement Suggestions
Topic: Proper comment highlighting
Replies: 3
Views: 349

Proper comment highlighting

With the following PHP code, incorrect comment coloring occurs. Only comment tags WITHIN the SyntaxStart/SyntaxEnd tags should be colored. There currently seems to be no method of writing a syn file to correct this. <?php // in somefile.php // some php here ?> <style> /* some css comments here this ...