* Remove modify_hr_tags method definition this breaks things that call it. * Remove direct uses of modify_hr_tags fixer method Remove from class METHODS lists, remove test cases about this behavior, and remove from methods lists in test cases. * Remove hr tag modification spec Still don't understand what problem this was fixing, but I've removed the test case.
14 lines
285 B
Ruby
14 lines
285 B
Ruby
module MarkdownProcessor
|
|
module Fixer
|
|
class FixAll < Base
|
|
METHODS = %i[
|
|
add_quotes_to_title
|
|
add_quotes_to_description
|
|
lowercase_published
|
|
convert_new_lines
|
|
split_tags
|
|
underscores_in_usernames
|
|
].freeze
|
|
end
|
|
end
|
|
end
|