This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/lib/import/normalize.rb

13 lines
307 B
Ruby
Raw Normal View History

# markdown normalizer to be used by importers
#
#
require 'htmlentities'
module Import::Normalize
def self.normalize_code_blocks(code, lang=nil)
coder = HTMLEntities.new
code.gsub(/<pre>\s*<code>\n?(.*?)\n?<\/code>\s*<\/pre>/m) {
"\n```#{lang}\n#{coder.decode($1)}\n```\n"
}
end
end