vote up 1 vote down star

Duplicate [MH]: http://stackoverflow.com/questions/221570/what-code-highlighting-libs-are-there-for-java


I use jsp for server-side programming and I want to highlight code (Java-code, xml, css, html and javascript) on server side. I prefer server-side tool because client tools (like jQuery chili) generate ugly html and they are slow.

flag

44% accept rate

closed as exact duplicate by Michael Haren, David, Daniel A. White, Software Monkey, Brian May 4 at 0:03

1 Answer

vote up 0 vote down

A problem that i have seen is that many tools come in 2 forms, those that simply scan and match patterns using regular expressions and those that attempt to be more accurate and use the target languages grammar to build an AST so they can take action on the different token types.

The former approprach has some but is not limited to problems like the following:

  • Class and method names because in some languages they share the same case-ness. C# but not java
  • In java its difficult to determine package/method/variables because they all are lowercase. While you can take extra measures such as its a method if a parenthesis follows the letters its at best an educated guess.

The one weakness of the later approach (the ast one) is that it cant handle fragments - eg an expression, they pretty much want a complete class.

Do people here like Class and methods to be highlighted or in their own colours ? Does it not matter ?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.