Liquex.Filter.split

You're seeing just the function split, go back to Liquex.Filter module for more information.
Link to this function

split(value, separator, _)

View Source

Divides a string into an array using the argument as a separator. split is commonly used to convert comma-separated items from a string to an array.

Examples

iex> Liquex.Filter.split("John, Paul, George, Ringo", ", ", %{})
["John", "Paul", "George", "Ringo"]