I was wondering what is the best practice to replace a common string in wicket page.
The problem is that I have a HTLM file with many components added. In between these components there is some text here and there and I wonder if there is for example a way using maybe wildcards to alter some of these text without having to add a bunch of Label components.
Imagine that I have this in an abstract page and I want the descendants commonly replace the wildcards.
<htlm>
<head>
<title>
Example
</title>
</head>
<body>
Mauris sed nulla $replace_me$. Fusce sodales eros id augue lobortis faucibus. Integer tincidunt, urna in egestas euismod, $replace_me$ sapien tincidunt lectus, quis sodales sem urna non lacus. Donec blandit lacus eget venenatis placerat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per $replace_me$ himenaeos. Suspendisse non accumsan eros. In nec lacinia dolor, ut congue diam. Suspendisse cursus, $replace_me$ id rutrum tempor, arcu diam facilisis nunc, eget vulputate elit nisi non tellus. Suspendisse aliquet enim ex, nec $replace_me$ neque porta a. Suspendisse potenti. Curabitur nec vestibulum risus.
</body>
</html>