Liquex.Parser.Field.identifier

You're seeing just the function identifier, go back to Liquex.Parser.Field module for more information.
Link to this function

identifier(combinator \\ empty())

View Source

Specs

identifier(NimbleParsec.t()) :: NimbleParsec.t()

Parses an identifier

Identifiers can start with any letter or underscore.

  • The remaining characters may include digits
  • May end in a question mark (?)

Examples

* "my_variable"
* "is_valid?"
* "variable_1"