-
-
Save cameronelliott/15604673eabc10e006fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
module Convertible | |
def write(dest) | |
path = destination(dest) | |
FileUtils.mkdir_p(File.dirname(path)) | |
if File.extname(path).downcase == '.html' then | |
self.output.strip! | |
reg = /<\/?pre[^>]*>/i | |
pres = self.output.scan(reg) | |
tary = self.output.split(reg) | |
oary = [] | |
reg = /\n/ | |
tary.each_with_index { |e, i| | |
oary << ( i % 2 != 0 ? e : e.gsub(reg, '\r\n') ) | |
oary << pres[i] if pres.size > i | |
} | |
self.output = oary.join('') | |
end | |
File.open(path, 'w') do |f| | |
f.write( self.output ) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment