├── .github ├── FUNDING.yml └── workflows │ ├── gempush.yml │ └── ruby.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── Rakefile ├── jekyll-loading-lazy.gemspec ├── lib ├── jekyll-loading-lazy.rb └── jekyll-loading-lazy │ └── version.rb └── spec ├── fixtures └── unit │ ├── _config.yml │ ├── _docs │ ├── document-with-include.md │ └── document-with-liquid-tag.md │ ├── _includes │ └── include.html │ ├── _layouts │ └── default.html │ ├── _posts │ ├── 2018-05-22-post-with-multiple-markdown-images.md │ ├── 2020-04-16-post-with-iframe.md │ ├── 2020-04-16-post-with-img.md │ ├── 2020-04-16-post-with-loading-iframe.md │ └── 2020-04-16-post-with-loading-img.md │ ├── index.md │ └── nothing.html ├── jekyll-loading_spec.rb └── spec_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: gildesmarais 2 | -------------------------------------------------------------------------------- /.github/workflows/gempush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/.github/workflows/gempush.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.gem 2 | spec/fixtures/unit/.jekyll-cache 3 | pkg 4 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | --order random 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-loading-lazy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/jekyll-loading-lazy.gemspec -------------------------------------------------------------------------------- /lib/jekyll-loading-lazy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/lib/jekyll-loading-lazy.rb -------------------------------------------------------------------------------- /lib/jekyll-loading-lazy/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/lib/jekyll-loading-lazy/version.rb -------------------------------------------------------------------------------- /spec/fixtures/unit/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_config.yml -------------------------------------------------------------------------------- /spec/fixtures/unit/_docs/document-with-include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_docs/document-with-include.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_docs/document-with-liquid-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_docs/document-with-liquid-tag.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_includes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_includes/include.html -------------------------------------------------------------------------------- /spec/fixtures/unit/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_layouts/default.html -------------------------------------------------------------------------------- /spec/fixtures/unit/_posts/2018-05-22-post-with-multiple-markdown-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_posts/2018-05-22-post-with-multiple-markdown-images.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_posts/2020-04-16-post-with-iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_posts/2020-04-16-post-with-iframe.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_posts/2020-04-16-post-with-img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_posts/2020-04-16-post-with-img.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_posts/2020-04-16-post-with-loading-iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_posts/2020-04-16-post-with-loading-iframe.md -------------------------------------------------------------------------------- /spec/fixtures/unit/_posts/2020-04-16-post-with-loading-img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/_posts/2020-04-16-post-with-loading-img.md -------------------------------------------------------------------------------- /spec/fixtures/unit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/index.md -------------------------------------------------------------------------------- /spec/fixtures/unit/nothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/fixtures/unit/nothing.html -------------------------------------------------------------------------------- /spec/jekyll-loading_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/jekyll-loading_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gildesmarais/jekyll-loading-lazy/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------