diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-13 05:00:52 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-13 05:00:52 +0200 |
commit | c23b0f91bc1e4fb2ce4e5060d0194ea6b2dbb970 (patch) | |
tree | 08be628c12a85b0745096a0ba44d3372bfbc7024 | |
parent | move Jekyll options to _config.yml (diff) | |
download | jekyll-theme-c23b0f91bc1e4fb2ce4e5060d0194ea6b2dbb970.tar.gz jekyll-theme-c23b0f91bc1e4fb2ce4e5060d0194ea6b2dbb970.zip |
lowercase category names
-rw-r--r-- | _posts/2021-04-08-mathjax.md | 2 | ||||
-rw-r--r-- | _posts/2021-04-09-snippets.md | 2 | ||||
-rw-r--r-- | _posts/2021-04-10-collapsible.md | 2 | ||||
-rw-r--r-- | _posts/2022-03-21-shell.md | 2 | ||||
-rw-r--r-- | code/index.html | 2 | ||||
-rw-r--r-- | features/index.html | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/_posts/2021-04-08-mathjax.md b/_posts/2021-04-08-mathjax.md index 538da4d..a6e0b20 100644 --- a/_posts/2021-04-08-mathjax.md +++ b/_posts/2021-04-08-mathjax.md @@ -2,7 +2,7 @@ title: Typesetting math excerpt: > Awesome MathJax-powered math! -category: Features +category: features mathjax: true --- Today, we'll "prove" that $$2 \times 2 \ne 5$$. diff --git a/_posts/2021-04-09-snippets.md b/_posts/2021-04-09-snippets.md index a789715..c7328dc 100644 --- a/_posts/2021-04-09-snippets.md +++ b/_posts/2021-04-09-snippets.md @@ -2,7 +2,7 @@ title: Code snippets excerpt: > Easily include code snippets in your posts. -category: Code +category: code snippets_root_directory: snippets snippets_language: c++ snippets: diff --git a/_posts/2021-04-10-collapsible.md b/_posts/2021-04-10-collapsible.md index 214c408..4197878 100644 --- a/_posts/2021-04-10-collapsible.md +++ b/_posts/2021-04-10-collapsible.md @@ -2,7 +2,7 @@ title: Collapsible snippets excerpt: > Snippets can be hidden in collapsible panels. -category: Code +category: code snippets_root_directory: snippets snippets_language: c++ snippets_collapsible: true diff --git a/_posts/2022-03-21-shell.md b/_posts/2022-03-21-shell.md index 1e167b3..3ba9ac4 100644 --- a/_posts/2022-03-21-shell.md +++ b/_posts/2022-03-21-shell.md @@ -2,7 +2,7 @@ title: Shell commands excerpt: > Pretty formatting for shell commands and their outputs. -category: Features +category: features --- It's easy to style shell commands and their outputs. Here's a one-line command and a one-line output. diff --git a/code/index.html b/code/index.html index 002a9a5..5f03ebe 100644 --- a/code/index.html +++ b/code/index.html @@ -1,4 +1,4 @@ --- -title: Code +title: code --- {% include jekyll-theme/categories/category.html category=page.title archive_link='/archive/' %} diff --git a/features/index.html b/features/index.html index 3bd02e3..54fb485 100644 --- a/features/index.html +++ b/features/index.html @@ -1,4 +1,4 @@ --- -title: Features +title: features --- {% include jekyll-theme/categories/category.html category=page.title archive_link='/archive/' %} |