lib/github/markup/markdown.rb in github-markup-1.4.1 vs lib/github/markup/markdown.rb in github-markup-1.4.2
- old
+ new
@@ -3,10 +3,10 @@
module GitHub
module Markup
class Markdown < Implementation
MARKDOWN_GEMS = {
"commonmarker" => proc { |content|
- CommonMarker.render_html(content, :default, %i[tagfilter autolink table strikethrough])
+ CommonMarker.render_html(content, :default, [:tagfilter, :autolink, :table, :strikethrough])
},
"github/markdown" => proc { |content|
GitHub::Markdown.render(content)
},
"redcarpet" => proc { |content|