├── .gitignore ├── Gemfile ├── LICENSE ├── LICENSE.txt ├── README.md ├── Rakefile ├── jekyll-auto-image.gemspec ├── lib ├── jekyll-auto-image.rb └── jekyll-auto-image │ └── version.rb └── test ├── fixtures ├── _posts │ └── 2015-01-01-post-with-contents-image.md ├── contents-html.html ├── contents-image.md ├── front-matter-image.md └── no-image.md ├── helper.rb └── test_jekyll_auto_image.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-auto-image.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/jekyll-auto-image.gemspec -------------------------------------------------------------------------------- /lib/jekyll-auto-image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/lib/jekyll-auto-image.rb -------------------------------------------------------------------------------- /lib/jekyll-auto-image/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/lib/jekyll-auto-image/version.rb -------------------------------------------------------------------------------- /test/fixtures/_posts/2015-01-01-post-with-contents-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/fixtures/_posts/2015-01-01-post-with-contents-image.md -------------------------------------------------------------------------------- /test/fixtures/contents-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/fixtures/contents-html.html -------------------------------------------------------------------------------- /test/fixtures/contents-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/fixtures/contents-image.md -------------------------------------------------------------------------------- /test/fixtures/front-matter-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/fixtures/front-matter-image.md -------------------------------------------------------------------------------- /test/fixtures/no-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/fixtures/no-image.md -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_jekyll_auto_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlos/jekyll-auto-image/HEAD/test/test_jekyll_auto_image.rb --------------------------------------------------------------------------------