Wicket - getting body of markup element
Assuming I have markup that looks like this : <span wicket:id="text">Some text that I'd like to read</span> Is it possible to get the content of the body of the tag somewhere, or is it irremediably stripped by wicket? Edit : My intent is to implement some kind of simple CMS. Users need to be able to enter LaTeX formulas, in the form of tex>a^2</tex> that I would then render with a RenderedDynamicImageResource. Other tags need to be interpreted in a similar way. I envisioned to do it in two steps with a Panel like this : public class LightweightMarkupPanel extends Panel implements