Hi I was looking to use <!-- and --> for block comments but it woun't let me enter that many characters.
I'm trying to make a combined php html highlighter as I don't use block comments in PHP I thought I'd use the block comments for HTML comments.
I can't use -> to end the block comment as that is used to refernce class members as in $myclass->member, nor can I use -- cos that is decrement operator.
It would be nice if the number of characters for block comments were not so limited. This may be just an interface limitation on the editbox which might be easy to remove. (The line comments don't appear to be limited in this way.)
Block comment character limits
-
- Posts: 20
- Joined: Tue Oct 11, 2005 12:55 pm
This is a known limitation of the current syntax highlighting engineIt would be nice if the number of characters for block comments were not so limited.

The GUI is limiting the input for a good reasons. Unfortunately the syntax highligher can only handle a limited number of block comment charactersThis may be just an interface limitation on the editbox which might be easy to remove.

In terms of programming logic, line comments are fairly simple to handle, where as the correctly handling of block comments is much harder. This is the reason for the input limitation.The line comments don't appear to be limited in this way.
Cheers Jussi