Created
August 22, 2013 10:13
-
-
Save kerotaa/6305496 to your computer and use it in GitHub Desktop.
a jekyll plugin that compress html files
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
require 'html_press' | |
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 = HtmlPress.press self.output | |
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