bbnj-scripts

migrating bbnj:inst/scripts to save space in R package bbnj

index of rendered html files

jekyll info on creating html listing

jekyll quickstart

install:

gem install jekyll bundler

run:

bundle exec jekyll serve

Gemfile setup

Contents of new Gemfile:

source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
bundle install

jekyll index listing


{% for file in site.static_files %}{% if file.extname == '.html' %}
* [{{ file.path }}]({{ site.baseurl }}{{ file.path }})
{% endif %}{% endfor %}