* @return Compiled HTML Markup(JavaScript Format)
*/
public String compile(String source, String templateKey) {
Context context = Context.enter();
Scriptable compileScope = context.newObject(globalScope);
compileScope.setParentScope(globalScope);
compileScope.put("source", compileScope, source);
compileScope.put("templateKey", compileScope, templateKey);