├── .gitignore ├── Gemfile ├── README ├── README.md ├── VERSIONS.md ├── features └── public.feature ├── jekyll-scholar-extras.gemspec ├── lib └── jekyll │ └── scholar │ ├── extras.rb │ ├── extras │ ├── bibliography_bytype.rb │ ├── bibliography_hdp.rb │ ├── details_hdp.rb │ └── extra_utils.rb │ ├── tags │ └── cite_details_dep.rb │ └── version.rb └── samples └── jekyll-template ├── README.md ├── _config.yml ├── _layouts ├── _site │ ├── default.html │ └── details.html ├── default.html └── details.html ├── _plugins └── jekyll-scholar.rb ├── _publications ├── custom-hdp.csl └── test.bib ├── css └── style.css └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/Gemfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- 1 | 0.0.3 2 | -------------------------------------------------------------------------------- /features/public.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/features/public.feature -------------------------------------------------------------------------------- /jekyll-scholar-extras.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/jekyll-scholar-extras.gemspec -------------------------------------------------------------------------------- /lib/jekyll/scholar/extras.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/extras.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/extras/bibliography_bytype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/extras/bibliography_bytype.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/extras/bibliography_hdp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/extras/bibliography_hdp.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/extras/details_hdp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/extras/details_hdp.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/extras/extra_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/extras/extra_utils.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/tags/cite_details_dep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/tags/cite_details_dep.rb -------------------------------------------------------------------------------- /lib/jekyll/scholar/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/lib/jekyll/scholar/version.rb -------------------------------------------------------------------------------- /samples/jekyll-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/README.md -------------------------------------------------------------------------------- /samples/jekyll-template/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_config.yml -------------------------------------------------------------------------------- /samples/jekyll-template/_layouts/_site/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_layouts/_site/default.html -------------------------------------------------------------------------------- /samples/jekyll-template/_layouts/_site/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_layouts/_site/details.html -------------------------------------------------------------------------------- /samples/jekyll-template/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_layouts/default.html -------------------------------------------------------------------------------- /samples/jekyll-template/_layouts/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_layouts/details.html -------------------------------------------------------------------------------- /samples/jekyll-template/_plugins/jekyll-scholar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_plugins/jekyll-scholar.rb -------------------------------------------------------------------------------- /samples/jekyll-template/_publications/custom-hdp.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_publications/custom-hdp.csl -------------------------------------------------------------------------------- /samples/jekyll-template/_publications/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/_publications/test.bib -------------------------------------------------------------------------------- /samples/jekyll-template/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodall/jekyll-scholar-extras/HEAD/samples/jekyll-template/css/style.css -------------------------------------------------------------------------------- /samples/jekyll-template/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | no_sidebar: true 4 | --- 5 | {% bibliography_hdp %} 6 | 7 | --------------------------------------------------------------------------------