sutty/app/models/metadata_markdown_content.rb

10 lines
248 B
Ruby
Raw Normal View History

2020-05-26 22:26:19 +00:00
# frozen_string_literal: true
class MetadataMarkdownContent < MetadataContent
# Renderizar a HTML
def to_s
CommonMarker.render_doc(value, %i[FOOTNOTES SMART],
%i[table strikethrough autolink]).to_html
end
end