liqp.blocks.Comment 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.
package liqp.blocks;
import liqp.TemplateContext;
import liqp.nodes.LNode;
public class Comment extends Block {
/*
* Block tag, comments out the text in the block
*/
@Override
public Object render(TemplateContext context, LNode... nodes) {
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy