liqp.blocks.Raw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liqp Show documentation
Show all versions of liqp Show documentation
A Java implementation of the Liquid templating engine backed up by an ANTLR grammar.
The newest version!
package liqp.blocks;
import liqp.TemplateContext;
import liqp.nodes.LNode;
public class Raw extends Block {
/*
* temporarily disable tag processing to avoid syntax conflicts.
*/
@Override
public Object render(TemplateContext context, LNode... nodes) {
return nodes[0].render(context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy