8ee382087d
Instead of using a fork, we subclass the filter and only apply the `task-list` class to list items that actually are task lists. Closes #1645 See https://github.com/github/task_list/pull/60
120 lines
4.5 KiB
Ruby
120 lines
4.5 KiB
Ruby
require 'html/pipeline'
|
|
|
|
module Gitlab
|
|
# Custom parser for GitLab-flavored Markdown
|
|
#
|
|
# See the files in `lib/gitlab/markdown/` for specific processing information.
|
|
module Markdown
|
|
# Provide autoload paths for filters to prevent a circular dependency error
|
|
autoload :AutolinkFilter, 'gitlab/markdown/autolink_filter'
|
|
autoload :CommitRangeReferenceFilter, 'gitlab/markdown/commit_range_reference_filter'
|
|
autoload :CommitReferenceFilter, 'gitlab/markdown/commit_reference_filter'
|
|
autoload :EmojiFilter, 'gitlab/markdown/emoji_filter'
|
|
autoload :ExternalIssueReferenceFilter, 'gitlab/markdown/external_issue_reference_filter'
|
|
autoload :IssueReferenceFilter, 'gitlab/markdown/issue_reference_filter'
|
|
autoload :LabelReferenceFilter, 'gitlab/markdown/label_reference_filter'
|
|
autoload :MergeRequestReferenceFilter, 'gitlab/markdown/merge_request_reference_filter'
|
|
autoload :RelativeLinkFilter, 'gitlab/markdown/relative_link_filter'
|
|
autoload :SanitizationFilter, 'gitlab/markdown/sanitization_filter'
|
|
autoload :SnippetReferenceFilter, 'gitlab/markdown/snippet_reference_filter'
|
|
autoload :TableOfContentsFilter, 'gitlab/markdown/table_of_contents_filter'
|
|
autoload :TaskListFilter, 'gitlab/markdown/task_list_filter'
|
|
autoload :UserReferenceFilter, 'gitlab/markdown/user_reference_filter'
|
|
|
|
# Public: Parse the provided text with GitLab-Flavored Markdown
|
|
#
|
|
# text - the source text
|
|
# options - options
|
|
# html_options - extra options for the reference links as given to link_to
|
|
def gfm(text, options = {}, html_options = {})
|
|
gfm_with_options(text, options, html_options)
|
|
end
|
|
|
|
# Public: Parse the provided text with GitLab-Flavored Markdown
|
|
#
|
|
# text - the source text
|
|
# options - A Hash of options used to customize output (default: {}):
|
|
# :xhtml - output XHTML instead of HTML
|
|
# :reference_only_path - Use relative path for reference links
|
|
# project - the project
|
|
# html_options - extra options for the reference links as given to link_to
|
|
def gfm_with_options(text, options = {}, html_options = {})
|
|
return text if text.nil?
|
|
|
|
# Duplicate the string so we don't alter the original, then call to_str
|
|
# to cast it back to a String instead of a SafeBuffer. This is required
|
|
# for gsub calls to work as we need them to.
|
|
text = text.dup.to_str
|
|
|
|
options.reverse_merge!(
|
|
xhtml: false,
|
|
reference_only_path: true,
|
|
project: @project,
|
|
current_user: current_user
|
|
)
|
|
|
|
pipeline = HTML::Pipeline.new(filters)
|
|
|
|
context = {
|
|
# EmojiFilter
|
|
asset_root: Gitlab.config.gitlab.url,
|
|
asset_host: Gitlab::Application.config.asset_host,
|
|
|
|
# TableOfContentsFilter
|
|
no_header_anchors: options[:no_header_anchors],
|
|
|
|
# ReferenceFilter
|
|
current_user: options[:current_user],
|
|
only_path: options[:reference_only_path],
|
|
project: options[:project],
|
|
reference_class: html_options[:class],
|
|
|
|
# RelativeLinkFilter
|
|
ref: @ref,
|
|
requested_path: @path,
|
|
project_wiki: @project_wiki
|
|
}
|
|
|
|
result = pipeline.call(text, context)
|
|
|
|
save_options = 0
|
|
if options[:xhtml]
|
|
save_options |= Nokogiri::XML::Node::SaveOptions::AS_XHTML
|
|
end
|
|
|
|
text = result[:output].to_html(save_with: save_options)
|
|
|
|
text.html_safe
|
|
end
|
|
|
|
private
|
|
|
|
# Filters used in our pipeline
|
|
#
|
|
# SanitizationFilter should come first so that all generated reference HTML
|
|
# goes through untouched.
|
|
#
|
|
# See https://github.com/jch/html-pipeline#filters for more filters.
|
|
def filters
|
|
[
|
|
Gitlab::Markdown::SanitizationFilter,
|
|
|
|
Gitlab::Markdown::RelativeLinkFilter,
|
|
Gitlab::Markdown::EmojiFilter,
|
|
Gitlab::Markdown::TableOfContentsFilter,
|
|
Gitlab::Markdown::AutolinkFilter,
|
|
|
|
Gitlab::Markdown::UserReferenceFilter,
|
|
Gitlab::Markdown::IssueReferenceFilter,
|
|
Gitlab::Markdown::ExternalIssueReferenceFilter,
|
|
Gitlab::Markdown::MergeRequestReferenceFilter,
|
|
Gitlab::Markdown::SnippetReferenceFilter,
|
|
Gitlab::Markdown::CommitRangeReferenceFilter,
|
|
Gitlab::Markdown::CommitReferenceFilter,
|
|
Gitlab::Markdown::LabelReferenceFilter,
|
|
|
|
Gitlab::Markdown::TaskListFilter
|
|
]
|
|
end
|
|
end
|
|
end
|