Renders an EMBD template to an output stream.
These functions provice means to render EMPD templates in a way similar to the render!() function of vibe.d for rendering Diet templates.
Note that these functions are only available if "vibe-d" is available as a dependency or if a "Have_vibe_d" version identifier is specified manually.
string caption = "Hello, World!"; //res.renderEmbd!("test.embd", caption)(); res.bodyWriter.renderEmbdCompat!("test.embd", string, "caption")(caption);
See Implementation
Renders an EMBD template to an output stream.
These functions provice means to render EMPD templates in a way similar to the render!() function of vibe.d for rendering Diet templates.
Note that these functions are only available if "vibe-d" is available as a dependency or if a "Have_vibe_d" version identifier is specified manually.