parser method

Parser parser([
  1. LiquidConfig? config
])

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:

If config is null, standard Liquid delimiters are used.

Implementation

Parser parser([LiquidConfig? config]) {
  return epsilon();
}