htmpl+aarch64 +linux

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[link]

fn write(h: io::handle, s: str) (size | io::error);

Writes a string to the destination.

fn write_escape_html[link]

fn write_escape_html(h: io::handle, s: str) (size | io::error | nomem);

Writes a string to the destination after HTML-escaping it.