docbrown/app/services/markdown_processor/fixer/fix_all.rb
Daniel Uber 032378b3bd
Disable dash replacement filter in markdown fixer (#15839)
* 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.
2021-12-20 15:39:55 -06:00

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