parser method
Returns the parser for this custom tag.
Override this method to define the parsing logic for your custom tag.
The optional config parameter provides the delimiter configuration.
When building parsers, use the factory functions with this config:
- createTagStart, createTagEnd for tag delimiters
- createVarStart, createVarEnd for variable delimiters
- someTag for complete tag parsers
If config is null, standard Liquid delimiters are used.
Implementation
Parser parser([LiquidConfig? config]) {
return epsilon();
}