Context.render

Renders the template. Don't implement this manually, instead mixin(renderer) in your subclass.

interface Context
void
render
(
string embd_code
const(dchar)[] embd_evalCodes
string embd_start
string embd_end
)
()

Parameters

embd_code

the embd template

embd_evalCodes

the allowed evaluation codes, passed to write to signal how to postprocess the dynamic content (e.g. whether to html escape or not)

embd_start

the delimeter signalling the start of embedded code

embd_end

the delimeter signalling the end of embedded code

Meta