├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── jekyll-figure.gemspec ├── lib ├── jekyll-figure-ref.rb ├── jekyll-figure.rb ├── jekyll-figure │ └── version.rb └── utils.rb └── spec ├── fixtures ├── _config.yml ├── _layouts │ └── some_default.html └── index.html ├── jekyll-figure-ref_spec.rb ├── jekyll-figure_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | spec/dest 3 | .bundle 4 | .jekyll-metadata 5 | *.gem 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-figure.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/jekyll-figure.gemspec -------------------------------------------------------------------------------- /lib/jekyll-figure-ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/lib/jekyll-figure-ref.rb -------------------------------------------------------------------------------- /lib/jekyll-figure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/lib/jekyll-figure.rb -------------------------------------------------------------------------------- /lib/jekyll-figure/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/lib/jekyll-figure/version.rb -------------------------------------------------------------------------------- /lib/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/lib/utils.rb -------------------------------------------------------------------------------- /spec/fixtures/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/fixtures/_config.yml -------------------------------------------------------------------------------- /spec/fixtures/_layouts/some_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/fixtures/_layouts/some_default.html -------------------------------------------------------------------------------- /spec/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/fixtures/index.html -------------------------------------------------------------------------------- /spec/jekyll-figure-ref_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/jekyll-figure-ref_spec.rb -------------------------------------------------------------------------------- /spec/jekyll-figure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/jekyll-figure_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulrobertlloyd/jekyll-figure/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------