registerFunction("text", new ResourceBundleFunction());
registerFunction("if", new IfFunction());
try {
registerFunction("format", new StaticMethodCaller(String.class.getMethod("format", String.class, Object[].class)));
} catch (NoSuchMethodException e) {
// Never going to happen
}
registerFilter("lower", LowerCaseFilter.class);