arg() = any()
args() = [arg()]
abstract datatype: dactyl_template()
operation() = literal | basic
segment() = {operation(), args()}
compile/1 | build a #dactyl_template{} from a source string or binary. |
compile_file/1 | build a #dactyl_template{} from a source file. |
new_template/1 | Build an internal representation of a dactyl template. |
render/2 | render from a template. |
render/3 | render from a template using module callbacks. |
render_file/2 | compile a source file, build a template, then render it. |
render_file/3 | compile a source file, build a template, then render it with callbacks. |
compile(String) -> any()
build a #dactyl_template{} from a source string or binary
compile_file(Filename) -> any()
build a #dactyl_template{} from a source file
new_template(Segs) -> any()
Build an internal representation of a dactyl template
render(Dactyl_template, Args) -> any()
render from a template
render(Mod, Dactyl_template, Args) -> any()
render from a template using module callbacks
render_file(Filename, Args) -> any()
compile a source file, build a template, then render it
render_file(Mod, Filename, Args) -> any()
compile a source file, build a template, then render it with callbacks
Generated by EDoc