diff --git a/_config.yml b/_config.yml index 0ee43f1..9109043 100644 --- a/_config.yml +++ b/_config.yml @@ -123,7 +123,6 @@ github: [metadata] # ----------------------------------------------------------------------------- remove_HTML_comments: false -beautify: false minify: true sass: diff --git a/_layouts/parse.html b/_layouts/parse.html index 4da5f35..6fcf1c6 100644 --- a/_layouts/parse.html +++ b/_layouts/parse.html @@ -27,4 +27,4 @@ {%- assign content = content | remove_first: _comment -%} {%- endfor -%} {%- endif -%} -{{ content | beautify | minify }} +{{ content | minify }} diff --git a/_plugins/beautify.rb b/_plugins/beautify.rb deleted file mode 100644 index 3831c80..0000000 --- a/_plugins/beautify.rb +++ /dev/null @@ -1,27 +0,0 @@ -require 'htmlbeautifier' - -module Jekyll - module StripHTML - def beautify(content) - if beautify_enabled? - content = HtmlBeautifier.beautify(content) - else - content - end - end - - private - - def beautify_enabled? - config = @context.registers[:site].config - true?(config['beautify']) - end - - def true?(obj) - obj.to_s.downcase == 'true' - end - - end -end - -Liquid::Template.register_filter(Jekyll::StripHTML)