BenioffOceanInitiative / bbnj-scripts

migrating bbnj:inst/scripts to save space in R package bbnj
https://BenioffOceanInitiative.github.io/bbnj-scripts
MIT License
0 stars 0 forks source link

bbnj-scripts

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

index of rendered html files

{% for file in site.static_files %} {% if file.extname == '.html' %}

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

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