module Haml::Filters::Wikitext

Public Instance Methods

render(text) click to toggle source
# File lib/wikitext/haml_filter.rb, line 29
def render(text)
  html = text.w
  html.respond_to?(:html_safe) ? html.html_safe : html
end