I’m trying to find a way to automatically convert links in a panel to hyper-links. So for example a user input is:
"And here you can find my awesome example: http://example.com"
Is it possible in wicket to add an anchor element to each “http://…” text, so the above example would output
"And here you can find my awesome example: <a href="http://example.com">http://example.com</a>"
instead?
You can use Wicket’s built in SmartLinkLabel.
From the Javadoc: