Hi guys I have written an own BindingFactory with the newBinding method like this:
public Binding newBinding(String description, ComponentResources container,
ComponentResources component, String expression, Location location) {
return new LiteralBinding(location, description, "<b>test</b>");
}
Within the template I use something like:
<p>${xxx:yyy}</p>
In the html output I see
<p><b>test</b></p>
but I want to see only:
<b>test</b>
how can I support tags within my value?
thanks chris
