Sha256: 8ddd62f8c1692ca0d7733b262c480ed40c4eae2c99797358f61c3fbf00275d3f
Contents?: true
Size: 306 Bytes
Versions: 43
Compression:
Stored size: 306 Bytes
Contents
module HoboFields module Types class MarkdownString < RawMarkdownString include SanitizeHtml HoboFields.register_type(:markdown, self) def to_html(xmldoctype = true) blank? ? "" : HoboFields::SanitizeHtml.sanitize(Markdown.new(self).to_html) end end end end
Version data entries
43 entries across 43 versions & 1 rubygems