Sha256: ef1e0d77bed1feffdec5d67e615fceb42f7a899c770267d9090e6477bc2432ed

Contents?: true

Size: 466 Bytes

Versions: 7

Compression:

Stored size: 466 Bytes

Contents

# Frozen-string-literal: true
# Copyright: 2012 - 2018 - MIT License
# Encoding: utf-8

require "jekyll/assets"
require "nokogiri"

module Jekyll
  module Assets
    class HTML
      class Favicon < HTML
        content_types "image/x-icon"

        # --
        def run
          Nokogiri::HTML::Builder.with(doc) do |d|
            d.link(args.to_h({
              html: true, skip: HTML.skips
            }))
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-assets-3.0.12 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.11 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.10 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.9 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.8 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.7 lib/jekyll/assets/plugins/html/favicon.rb
jekyll-assets-3.0.6 lib/jekyll/assets/plugins/html/favicon.rb