* Enable and fix Style/Send * Enable and fix Style/Next * Fix private cookies send * Fix merging indentation issues
96 lines
3.1 KiB
Ruby
96 lines
3.1 KiB
Ruby
class MarkdownFixer
|
|
FRONT_MATTER_DETECTOR = /-{3}.*?-{3}/m.freeze
|
|
|
|
class << self
|
|
def fix_all(markdown)
|
|
methods = %i[
|
|
add_quotes_to_title add_quotes_to_description
|
|
modify_hr_tags convert_new_lines split_tags underscores_in_usernames
|
|
]
|
|
methods.reduce(markdown) { |acc, elem| public_send(elem, acc) }
|
|
end
|
|
|
|
def fix_for_preview(markdown)
|
|
methods = %i[add_quotes_to_title add_quotes_to_description modify_hr_tags underscores_in_usernames]
|
|
methods.reduce(markdown) { |acc, elem| public_send(elem, acc) }
|
|
end
|
|
|
|
def fix_for_comment(markdown)
|
|
methods = %I[modify_hr_tags underscores_in_usernames]
|
|
methods.reduce(markdown) { |acc, elem| public_send(elem, acc) }
|
|
end
|
|
|
|
def add_quotes_to_title(markdown)
|
|
add_quotes_to_section(markdown, section: "title")
|
|
end
|
|
|
|
def add_quotes_to_description(markdown)
|
|
add_quotes_to_section(markdown, section: "description")
|
|
end
|
|
|
|
# This turns --- into ------- after the first two,
|
|
# because --- messes with front matter
|
|
def modify_hr_tags(markdown)
|
|
markdown.gsub(/-{3}.*?-{3}/m) do |front_matter|
|
|
front_matter.gsub(/^---/).with_index { |match, i| i > 1 ? "#{match}-----" : match }
|
|
end
|
|
end
|
|
|
|
def convert_new_lines(markdown)
|
|
markdown.gsub("\r\n", "\n")
|
|
end
|
|
|
|
def split_tags(markdown)
|
|
markdown.gsub(/\ntags:.*\n/) do |tags|
|
|
tags.split(" #").join(",").delete("#").gsub(":,", ": ")
|
|
end
|
|
end
|
|
|
|
def underscores_in_usernames(markdown)
|
|
return markdown unless markdown.match?(USERNAME_WITH_UNDERSCORE_REGEXP)
|
|
|
|
traverser = MarkdownTraverser.new(markdown)
|
|
traverser.each do |line|
|
|
next if traverser.in_codeblock?
|
|
|
|
escape_underscored_username_in_line!(line)
|
|
end.join
|
|
end
|
|
|
|
private
|
|
|
|
# Match @_username_ that is not preceded by backtick
|
|
USERNAME_WITH_UNDERSCORE_REGEXP = /(?<!`)@_\w+_/.freeze
|
|
|
|
# Escapes underscored username that is not in code
|
|
def escape_underscored_username_in_line!(line)
|
|
line.scan(USERNAME_WITH_UNDERSCORE_REGEXP).each do |to_escape|
|
|
line.sub!(to_escape, to_escape.gsub("_", "\\_"))
|
|
end
|
|
line
|
|
end
|
|
|
|
def add_quotes_to_section(markdown, section:)
|
|
# Only add quotes to front matter, or text between triple dashes
|
|
markdown.sub(FRONT_MATTER_DETECTOR) do |front_matter|
|
|
front_matter.gsub(/#{section}: ?(?<content>.*?)(\r\n|\n)/m) do |target|
|
|
# `content` is the captured group (.*?)
|
|
captured_text = Regexp.last_match("content")
|
|
# The query below checks if the whole text is wrapped in
|
|
# either single or double quotes.
|
|
match = captured_text.scan(/(^".*"$|^'.*'$)/)
|
|
if match.empty?
|
|
# Double quotes that aren't already escaped will get esacped.
|
|
# Then the whole text get warped in double quotes.
|
|
parsed_text = captured_text.gsub(/(?<!\\)"/, "\\\"")
|
|
"#{section}: \"#{parsed_text}\"\n"
|
|
else
|
|
# if the text comes pre-warped in either single or double quotes,
|
|
# no more processing is done
|
|
target
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|