JSPs support the <%-- comment --%>
syntax for comments, which is a way to comment markup code such that it doesn't get included in the emitted HTML.
Is there a way to do this in Wicket?
JSPs support the <%-- comment --%>
syntax for comments, which is a way to comment markup code such that it doesn't get included in the emitted HTML.
Is there a way to do this in Wicket?
<wicket:remove>
is your friend. Wicket will remove this from output.
there's
Application#getMarkupSettings().setStripComments(true)
which will remove
<!-- comment -->
from your markup