George Armhold
George Armhold

Reputation: 31074

Wicket: hide comments in HTML

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?

Upvotes: 9

Views: 2439

Answers (2)

Hajo Thelen
Hajo Thelen

Reputation: 1135

<wicket:remove> is your friend. Wicket will remove this from output.

See here https://cwiki.apache.org/confluence/display/WICKET/Wicket's+XHTML+tags#Wicket%27sXHTMLtags-Elementwicket%3Aremove

Upvotes: 17

Peter Ertl
Peter Ertl

Reputation: 71

there's

Application#getMarkupSettings().setStripComments(true) 

which will remove

<!-- comment --> 

from your markup

Upvotes: 7

Related Questions