Current section

Files

Jump to
infuse lib simplates renderers code_renderer.ex
Raw

lib/simplates/renderers/code_renderer.ex

defmodule Infuse.Simplates.Renderers.CodeRenderer do
def render(compiled, context \\ []) do
Code.eval_quoted(compiled, context)
end
def compile(content) do
Code.string_to_quoted!(content)
end
end