94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
9 lines
222 B
Text
9 lines
222 B
Text
In JSP page, if we have a line like <% // some comments %>, then the "%>" is ignored by nxhtml.
|
|
However if we write it like this:
|
|
<% // some comments
|
|
%>
|
|
or
|
|
<%
|
|
// some comments
|
|
%>
|
|
then the page is parsed correctly
|