String templateValue = String.format("<html><#if %s><p>hello</p></#if></html>", expression);
System.out.println( templateValue );
Renderable widget =
new FreemarkerTemplateCompiler()
.compile(Object.class, template(templateValue));
assert null != widget : " null ";
final StringBuilder builder = new StringBuilder();