mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
307 B
Ruby
13 lines
307 B
Ruby
|
# 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
|