import org.webmacro.*;
public class HelloWorld {
public static void main(String[] args) throws Exception {
WM wm = new DefaultWM();
Parse parse = wm.getGlobalParseCache().getParse("HelloWorld.wm");
Context context = new DefaultContext();
context.put("name", "World");
String output = parse.generateOutput(context);
System.out.println(output);
}
}
html
<h1>Hello ${name}!</h1>