Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make this list a const #320

Merged
merged 1 commit into from
Nov 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/html/pipeline/markdown_filter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ class Pipeline
#
# This filter does not write any additional information to the context hash.
class MarkdownFilter < TextFilter
DEFAULT_COMMONMARKER_EXTENSIONS = %i[table strikethrough tagfilter autolink].freeze

def initialize(text, context = nil, result = nil)
super text, context, result
@text = @text.delete "\r"
Expand All @@ -25,7 +27,7 @@ def initialize(text, context = nil, result = nil)
def call
extensions = context.fetch(
:commonmarker_extensions,
%i[table strikethrough tagfilter autolink]
DEFAULT_COMMONMARKER_EXTENSIONS
)
html = if (renderer = context[:commonmarker_renderer])
unless renderer < CommonMarker::HtmlRenderer
Expand Down