All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liqp.blocks.Raw Maven / Gradle / Ivy

Go to download

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