Sha256: 274b2caf58d8c785dfc0021f940ee23d54b11a97a48b8553ef92cdbb3bd65e30

Contents?: true

Size: 142 Bytes

Versions: 7

Compression:

Stored size: 142 Bytes

Contents

class HtmlFile < SourceFile

  def self.extension
    ".html"
  end

  def minify_content(source)
    source.gsub(/>\s+</, "><")
  end
  
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
distil-0.10.4 lib/file-types/html-file.rb
distil-0.10.3 lib/file-types/html-file.rb
distil-0.10.1 lib/file-types/html-file.rb
distil-0.10.0 lib/file-types/html-file.rb
distil-0.8.4 lib/file-types/html-file.rb
distil-0.8.2 lib/file-types/html-file.rb
distil-0.8.1 lib/file-types/html-file.rb