-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major update, overhaul (basically) everything
- Loading branch information
Showing
198 changed files
with
31,192 additions
and
3,271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,10 @@ _site/ | |
.jekyll-metadata | ||
|
||
# misc | ||
_gulp/ | ||
_/ | ||
TODOs.md | ||
TODOs.md | ||
tmp/ | ||
|
||
# node | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 4.1" | ||
# NOTE: gems under `group :jekyll_plugins do` should be loaded irrespectively of | ||
# `_config.yml`, but for some unknown reason I couldn't make it work! | ||
# https://jekyllrb.com/docs/plugins/installation/ | ||
# | ||
# I am doing the following: | ||
# - alternative / forked versions of gems are specified below | ||
# - all other gems are specified in `.gemspec` | ||
# - jekyll plugins are loaded explicitly in `_config.yml` | ||
|
||
|
||
# alternative / forked versions of gems | ||
|
||
# sensible plugins | ||
gem "jekyll-feed" | ||
gem "jekyll-seo-tag" | ||
gem "jekyll-sitemap" | ||
gem "jekyll-optional-front-matter" | ||
gem "jekyll-redirect-from" | ||
gem "jekyll-archives" | ||
gem "jekyll-last-modified-at" | ||
gem "jekyll-feed", github: "drscream/jekyll-feed", branch: "feature/template-feed-xml" | ||
# also works: | ||
# gem "jekyll-feed", github: "drscream/jekyll-feed", ref: "refs/pull/362/head" | ||
|
||
# TODO: track if / when this PR will be merged into the main repo | ||
# - https://github.com/jekyll/jekyll-feed/pull/362 | ||
|
||
gem "katex", github: "lucasrla/katex-ruby" | ||
gem "kramdown-math-katex" | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.