Class: Jekyll::Assets::Default::Img
- Inherits:
-
Jekyll::Assets::Default
- Object
- Extensible
- Jekyll::Assets::Default
- Jekyll::Assets::Default::Img
- Defined in:
- lib/jekyll/assets/plugins/html/defaults/img.rb
Instance Attribute Summary
Attributes inherited from Extensible
#args, #asset, #ctx, #env, #jekyll
Instance Method Summary collapse
-
#integrity? ⇒ Boolean
–.
-
#set_height ⇒ Object
–.
-
#set_integrity ⇒ Object
–.
-
#set_src ⇒ Object
–.
-
#set_width ⇒ Object
–.
Methods inherited from Jekyll::Assets::Default
#config, get, #run, set, set_static, static
Methods inherited from Extensible
for?, for_args?, for_type?, inherited, #initialize, internal!, internal?, requirements
Constructor Details
This class inherits a constructor from Jekyll::Assets::Extensible
Instance Method Details
#integrity? ⇒ Boolean
–
46 47 48 49 |
# File 'lib/jekyll/assets/plugins/html/defaults/img.rb', line 46 def integrity? config[:integrity] && !@asset.is_a?(Url) && !@args.key?(:integrity) end |
#set_height ⇒ Object
–
22 23 24 25 26 |
# File 'lib/jekyll/assets/plugins/html/defaults/img.rb', line 22 def set_height unless args.key?(:height) || !config[:height] args[:height] = "auto" end end |
#set_integrity ⇒ Object
–
37 38 39 40 41 42 43 |
# File 'lib/jekyll/assets/plugins/html/defaults/img.rb', line 37 def set_integrity return unless integrity? @args[:integrity] = @asset.integrity unless @args.key?(:crossorigin) @args[:crossorigin] = "anonymous" end end |
#set_src ⇒ Object
–
29 30 31 32 33 34 |
# File 'lib/jekyll/assets/plugins/html/defaults/img.rb', line 29 def set_src dpath = @asset.digest_path return @args[:src] = @asset.url if @asset.is_a?(Url) return @args[:src] = @env.prefix_url(dpath) unless @args[:inline] @args[:src] = @asset.data_uri end |
#set_width ⇒ Object
–
15 16 17 18 19 |
# File 'lib/jekyll/assets/plugins/html/defaults/img.rb', line 15 def set_width unless args.key?(:width) || !config[:width] args[:width] = "100%" end end |