The object which manages the rendering of an embd template.
To use, create a subclass, manually implement write, and automatically implement render by mixin(renderer).
This allows you to access fields and other methods of your subclass from the template (which is generated to be within the body of render).
Renders the template. Don't implement this manually, instead mixin(renderer) in your subclass.
Write the content to whatever you are writing to.
The render implementation to mixin to your subclass.
See Implementation
The object which manages the rendering of an embd template.
To use, create a subclass, manually implement write, and automatically implement render by mixin(renderer).
This allows you to access fields and other methods of your subclass from the template (which is generated to be within the body of render).