class Marten::Template::Tag::Verbatim
- Marten::Template::Tag::Verbatim
- Marten::Template::Tag::Base
- Reference
- Object
Overview
The verbatim
template tag.
The {% verbatim %}...{% endverbatim %}
template tag prevents the content of the tag to be processed by the
template engine. For example:
{% verbatim %}
This should not be {{ processed }}.
{% endverbatim %}
Defined in:
marten/template/tag/verbatim.crConstructors
Instance Method Summary
-
#render(context : Context) : String
Render the template tag for a given context.
Instance methods inherited from class Marten::Template::Tag::Base
render(context : Context) : String
render
Constructor methods inherited from class Marten::Template::Tag::Base
new(parser : Parser, source : String)
new
Constructor Detail
Instance Method Detail
Description copied from class Marten::Template::Tag::Base
Render the template tag for a given context.