htmpl
The htmpl module provides runtime functions for the HTML template engine.
Functions herein are expected to be used by code generated by the same version of htmplgen.
Many functions take an io::handle, which represents the destination where templates shall be rendered to.
Index
Functions
fn write(h: io::handle, s: str) (size | io::error);
fn write_escape_html(h: io::handle, s: str) (size | io::error | nomem);
Functions
fn write
fn write(h: io::handle, s: str) (size | io::error);
Writes a string to the destination.
fn write_escape_html
fn write_escape_html(h: io::handle, s: str) (size | io::error | nomem);
Writes a string to the destination after HTML-escaping it.