2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/import/normalize.rb
2014-06-06 14:08:39 +10:00

13 lines
326 B
Ruby

# markdown normalizer to be used by importers
#
#
require 'htmlentities'
module Import; end
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