├── .gitignore ├── LICENSE ├── README.md ├── asset_path_tag.rb ├── icon.png └── test_site ├── Gemfile ├── Gemfile.lock ├── _another_collection └── Another.markdown ├── _config.yml ├── _plugins └── asset_path_tag.rb ├── _posts ├── 2000-01-02-Another_page.markdown └── 2017-01-14-tests.markdown ├── _test_collection └── Test_collection_item.markdown ├── assets ├── another_collection │ └── Another │ │ ├── another with space.png │ │ └── another.png ├── error.png ├── nonpost_tests │ ├── nonpost with space.png │ └── nonpost.png ├── posts │ ├── Another_page │ │ ├── another page with space.png │ │ └── another-page.png │ └── tests │ │ ├── this page with space.png │ │ └── this-page.png └── test_collection │ └── Test_collection_item │ ├── this collection item with space.png │ └── this-collection-item.png ├── index.html └── nonpost_tests.markdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/README.md -------------------------------------------------------------------------------- /asset_path_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/asset_path_tag.rb -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/icon.png -------------------------------------------------------------------------------- /test_site/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/Gemfile -------------------------------------------------------------------------------- /test_site/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/Gemfile.lock -------------------------------------------------------------------------------- /test_site/_another_collection/Another.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/_another_collection/Another.markdown -------------------------------------------------------------------------------- /test_site/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/_config.yml -------------------------------------------------------------------------------- /test_site/_plugins/asset_path_tag.rb: -------------------------------------------------------------------------------- 1 | ../../asset_path_tag.rb -------------------------------------------------------------------------------- /test_site/_posts/2000-01-02-Another_page.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/_posts/2000-01-02-Another_page.markdown -------------------------------------------------------------------------------- /test_site/_posts/2017-01-14-tests.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/_posts/2017-01-14-tests.markdown -------------------------------------------------------------------------------- /test_site/_test_collection/Test_collection_item.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/_test_collection/Test_collection_item.markdown -------------------------------------------------------------------------------- /test_site/assets/another_collection/Another/another with space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/another_collection/Another/another with space.png -------------------------------------------------------------------------------- /test_site/assets/another_collection/Another/another.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/another_collection/Another/another.png -------------------------------------------------------------------------------- /test_site/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/error.png -------------------------------------------------------------------------------- /test_site/assets/nonpost_tests/nonpost with space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/nonpost_tests/nonpost with space.png -------------------------------------------------------------------------------- /test_site/assets/nonpost_tests/nonpost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/nonpost_tests/nonpost.png -------------------------------------------------------------------------------- /test_site/assets/posts/Another_page/another page with space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/posts/Another_page/another page with space.png -------------------------------------------------------------------------------- /test_site/assets/posts/Another_page/another-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/posts/Another_page/another-page.png -------------------------------------------------------------------------------- /test_site/assets/posts/tests/this page with space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/posts/tests/this page with space.png -------------------------------------------------------------------------------- /test_site/assets/posts/tests/this-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/posts/tests/this-page.png -------------------------------------------------------------------------------- /test_site/assets/test_collection/Test_collection_item/this collection item with space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/test_collection/Test_collection_item/this collection item with space.png -------------------------------------------------------------------------------- /test_site/assets/test_collection/Test_collection_item/this-collection-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/assets/test_collection/Test_collection_item/this-collection-item.png -------------------------------------------------------------------------------- /test_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/index.html -------------------------------------------------------------------------------- /test_site/nonpost_tests.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samrayner/jekyll-asset-path-plugin/HEAD/test_site/nonpost_tests.markdown --------------------------------------------------------------------------------