mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:36:23 +00:00
17 lines
410 B
Ruby
17 lines
410 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'commonmarker'
|
|
|
|
module Haml::Filters
|
|
remove_filter('Markdown') # remove the existing Markdown filter
|
|
|
|
module Markdown
|
|
include Haml::Filters::Base
|
|
|
|
def render(text)
|
|
CommonMarker.render_html(text,
|
|
[:TABLE_PREFER_STYLE_ATTRIBUTES],
|
|
%i[table strikethrough autolink tagfilter])
|
|
end
|
|
end
|
|
end
|