docbrown/app/services/markdown_processor/fixer/fix_all.rb
Alex 31689fd76a
Break MarkdownFixer into MarkdownProcessor::Fixer services (#12241)
* Create new MarkdownProcessor::Fixer services

* Remove old MarkdownFixer

* Code cleanup

* Capitalize Base in code comments

* Remove comments related to inheritance

* Add fix_methods method to hold METHDOS constant
2021-01-14 10:26:46 -05:00

15 lines
308 B
Ruby

module MarkdownProcessor
module Fixer
class FixAll < Base
METHODS = %i[
add_quotes_to_title
add_quotes_to_description
lowercase_published
modify_hr_tags
convert_new_lines
split_tags
underscores_in_usernames
].freeze
end
end
end