Module Haml::Filters::Escaped
In: lib/haml/filters.rb

Works the same as {Plain}, but HTML-escapes the text before placing it in the document.

Methods

render  

Included Modules

Base

Public Instance methods

@see Base#render

[Source]

     # File lib/haml/filters.rb, line 221
221:       def render(text)
222:         Haml::Helpers.html_escape text
223:       end

[Validate]