mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 05:36:22 +00:00
17 lines
568 B
Ruby
17 lines
568 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Contenido con el editor de Markdown
|
|
class MetadataMarkdownContent < MetadataContent
|
|
# Renderizar a HTML y sanitizar
|
|
def to_s
|
|
sanitize CommonMarker.render_doc(value, %i[FOOTNOTES SMART],
|
|
%i[table strikethrough autolink]).to_html
|
|
end
|
|
|
|
# XXX: No sanitizamos acá porque se escapan varios símbolos de
|
|
# markdown y se eliminan autolinks. Mejor es deshabilitar la
|
|
# generación SAFE de CommonMark en la configuración del sitio.
|
|
def sanitize(string)
|
|
string.tr("\r", '')
|
|
end
|
|
end
|