EEx.eval_string

You're seeing just the function eval_string, go back to EEx module for more information.
Link to this function

eval_string(source, bindings \\ [], options \\ [])

View Source

Specs

eval_string(String.t(), keyword(), keyword()) :: String.t()

Gets a string source and evaluate the values using the bindings.

Examples

iex> EEx.eval_string("foo <%= bar %>", bar: "baz")
"foo baz"