legacy-dotfiles/emacs.d/nxhtml/tests/in/bug523065.jsp

10 lines
222 B
Text
Raw Normal View History

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