diff --git a/website/docs/config.rb b/website/docs/config.rb index 40a858875..132037bb8 100644 --- a/website/docs/config.rb +++ b/website/docs/config.rb @@ -59,13 +59,6 @@ set :markdown, fenced_code_blocks: true configure :build do activate :asset_hash activate :minify_css - activate :minify_html do |html| - html.remove_quotes = false - html.remove_script_attributes = false - html.remove_multi_spaces = false - html.remove_http_protocol = false - html.remove_https_protocol = false - end activate :minify_javascript # Enable cache buster diff --git a/website/www/config.rb b/website/www/config.rb index d8ea935b6..d30b7bd51 100644 --- a/website/www/config.rb +++ b/website/www/config.rb @@ -33,12 +33,5 @@ end configure :build do activate :asset_hash activate :minify_css - activate :minify_html do |html| - html.remove_quotes = false - html.remove_script_attributes = false - html.remove_multi_spaces = false - html.remove_http_protocol = false - html.remove_https_protocol = false - end activate :minify_javascript end