From d2db439c169c45ac683fa1c8157c6ea7e0b54b85 Mon Sep 17 00:00:00 2001 From: Jason Raveling Date: Mon, 17 Nov 2025 00:19:16 -0600 Subject: [PATCH 01/13] feat: add support for `fediverse:creator` meta tag (#2593) --- _config.yml | 1 + _includes/head.html | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/_config.yml b/_config.yml index d727796fe..9b9e2b27b 100644 --- a/_config.yml +++ b/_config.yml @@ -36,6 +36,7 @@ social: # It will be displayed as the default author of the posts and the copyright owner in the Footer name: your_full_name email: example@domain.com # change to your email address + fediverse_handle: "@you@domain.com" # change to your fediverse handle or leave empty links: # The first element serves as the copyright owner's link - https://twitter.com/username # change to your Twitter homepage diff --git a/_includes/head.html b/_includes/head.html index d0fcfd9b6..a453323b5 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -50,6 +50,11 @@ {{ seo_tags }} + {%- if site.social.fediverse_handle %} + + + {% endif %} + {%- unless page.layout == 'home' -%} {{ page.title | append: ' | ' }} From 52d160f8574e8d0cddcaa46af114eb382fea1644 Mon Sep 17 00:00:00 2001 From: nakamura <71050561+manabu-nakamura@users.noreply.github.com> Date: Thu, 18 Dec 2025 02:51:53 +0900 Subject: [PATCH 02/13] fix(i18n): localize the title (#2610) --- _includes/head.html | 12 ++++++++++-- _layouts/default.html | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/_includes/head.html b/_includes/head.html index a453323b5..3ad52fd9b 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -57,9 +57,17 @@ <title> {%- unless page.layout == 'home' -%} - {{ page.title | append: ' | ' }} + {%- capture title -%} + {%- if page.collection == 'tabs' -%} + {%- assign tab_key = page.title | downcase -%} + {{- site.data.locales[include.lang].tabs[tab_key] -}} + {%- else -%} + {{- page.title -}} + {%- endif -%} + {%- endcapture -%} + {{- title | append: ' | ' -}} {%- endunless -%} - {{ site.title }} + {{- site.title -}} {% include_cached favicons.html %} diff --git a/_layouts/default.html b/_layouts/default.html index f36c6057b..72db34c1e 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -14,7 +14,7 @@ layout: compress - {% include head.html %} + {% include head.html lang=lang %} {% include sidebar.html lang=lang %} From 92e0ff63ec03c2f829696d3f604cbba54203e1b4 Mon Sep 17 00:00:00 2001 From: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com> Date: Thu, 18 Dec 2025 13:55:28 -0500 Subject: [PATCH 03/13] build(deps): update platforms in Gemfile for Windows (#2628) --- Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index e5415748a..62a840ea7 100644 --- a/Gemfile +++ b/Gemfile @@ -6,9 +6,9 @@ gemspec gem "html-proofer", "~> 5.0", group: :test -platforms :mingw, :x64_mingw, :mswin, :jruby do +platforms :windows, :jruby do gem "tzinfo", ">= 1", "< 3" gem "tzinfo-data" end -gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin] +gem "wdm", "~> 0.2.0", :platforms => [:windows] From 0fbaa5359b3e1939b10c16f76cf3ce8ded83e864 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sat, 3 Jan 2026 07:35:44 +0800 Subject: [PATCH 04/13] chore: reduce optional config defaults --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 9b9e2b27b..09eb8f5ae 100644 --- a/_config.yml +++ b/_config.yml @@ -36,7 +36,7 @@ social: # It will be displayed as the default author of the posts and the copyright owner in the Footer name: your_full_name email: example@domain.com # change to your email address - fediverse_handle: "@you@domain.com" # change to your fediverse handle or leave empty + fediverse_handle: # fill in your fediverse handle. E.g. "@username@domain.com" links: # The first element serves as the copyright owner's link - https://twitter.com/username # change to your Twitter homepage From 96da25abbdd1abbf1894d02aca3f2550673de3d4 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:36:07 +0800 Subject: [PATCH 05/13] build(dev-deps): upgrade node packages --- package.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 61e4a425a..f928ec459 100644 --- a/package.json +++ b/package.json @@ -30,28 +30,28 @@ "bootstrap": "^5.3.8" }, "devDependencies": { - "@babel/core": "^7.28.4", - "@babel/plugin-transform-class-properties": "^7.27.1", - "@babel/plugin-transform-private-methods": "^7.27.1", - "@babel/preset-env": "^7.28.3", - "@commitlint/cli": "^20.1.0", - "@commitlint/config-conventional": "^20.0.0", - "@rollup/plugin-babel": "^6.1.0", + "@babel/core": "^7.29.0", + "@babel/plugin-transform-class-properties": "^7.28.6", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/preset-env": "^7.29.0", + "@commitlint/cli": "^20.4.4", + "@commitlint/config-conventional": "^20.4.4", + "@rollup/plugin-babel": "^7.0.0", "@rollup/plugin-node-resolve": "^16.0.3", - "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-terser": "^1.0.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^7.1.0", "@semantic-release/git": "^10.0.1", "concurrently": "^9.2.1", - "conventional-changelog-conventionalcommits": "^9.1.0", - "eslint": "^9.38.0", - "globals": "^16.4.0", + "conventional-changelog-conventionalcommits": "^9.3.0", + "eslint": "^10.0.3", + "globals": "^17.4.0", "husky": "^9.1.7", - "purgecss": "^7.0.2", - "rollup": "^4.52.5", - "semantic-release": "^25.0.1", - "stylelint": "^16.25.0", - "stylelint-config-standard-scss": "^16.0.0" + "purgecss": "^8.0.0", + "rollup": "^4.59.0", + "semantic-release": "^25.0.3", + "stylelint": "^17.4.0", + "stylelint-config-standard-scss": "^17.0.0" }, "prettier": { "trailingComma": "none" From 477394b7445340b5a5ff1fbfc422fc2044f366f8 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Thu, 12 Mar 2026 20:45:20 +0800 Subject: [PATCH 06/13] style: interpolate sass variable in CSS custom property --- _sass/pages/_post.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/pages/_post.scss b/_sass/pages/_post.scss index 2cd3eee33..5ba78d977 100644 --- a/_sass/pages/_post.scss +++ b/_sass/pages/_post.scss @@ -127,7 +127,7 @@ header { .share-mastodon { /* See: https://github.com/justinribeiro/share-to-mastodon#properties */ - --wc-stm-font-family: v.$font-family-base; + --wc-stm-font-family: #{v.$font-family-base}; --wc-stm-dialog-background-color: var(--card-bg); --wc-stm-form-button-border: 1px solid var(--btn-border-color); --wc-stm-form-submit-background-color: var(--sidebar-btn-bg); From ce14e1a08784129d7a7b7e234486f2a25fb6ede3 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Thu, 12 Mar 2026 21:02:46 +0800 Subject: [PATCH 07/13] chore: update ESLint dependencies and improve js style --- _javascript/modules/components/img-popup.js | 6 +++--- package.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/_javascript/modules/components/img-popup.js b/_javascript/modules/components/img-popup.js index 420a2265f..c9fc0402a 100644 --- a/_javascript/modules/components/img-popup.js +++ b/_javascript/modules/components/img-popup.js @@ -8,7 +8,7 @@ const lightImages = '.popup:not(.dark)'; const darkImages = '.popup:not(.light)'; let selector = lightImages; -function updateImages(current, reverse) { +function swapImages(current, reverse) { if (selector === lightImages) { selector = darkImages; } else { @@ -19,7 +19,7 @@ function updateImages(current, reverse) { reverse = GLightbox({ selector: `${selector}` }); } - [current, reverse] = [reverse, current]; + return [reverse, current]; } export function imgPopup() { @@ -43,7 +43,7 @@ export function imgPopup() { window.addEventListener('message', (event) => { if (event.source === window && event.data && event.data.id === Theme.ID) { - updateImages(current, reverse); + [current, reverse] = swapImages(current, reverse); } }); } diff --git a/package.json b/package.json index f928ec459..a0bb912ea 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "@babel/preset-env": "^7.29.0", "@commitlint/cli": "^20.4.4", "@commitlint/config-conventional": "^20.4.4", + "@eslint/js": "^10.0.0", "@rollup/plugin-babel": "^7.0.0", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^1.0.0", From cc1d44ee3e8f1c467aae293c9348fd8908d89380 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Thu, 12 Mar 2026 21:37:15 +0800 Subject: [PATCH 08/13] build(gh-actions): enable `dependabot` to scan the starter workflow --- .github/dependabot.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a51f37eb0..c294dc643 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,7 +15,8 @@ updates: schedule: interval: "weekly" - package-ecosystem: "github-actions" - directory: "/" + directories: + - "/.github/workflows/**" groups: gh-actions: update-types: From fe968a770141846a12cd9e235bfd547fe088f4cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Mar 2026 21:42:58 +0800 Subject: [PATCH 09/13] build(deps): bump the gh-actions group across 2 directories with 4 updates (#2678) Bumps the gh-actions group with 2 updates in the /.github/workflows directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Bumps the gh-actions group with 3 updates in the /.github/workflows/starter directory: [actions/checkout](https://github.com/actions/checkout), [actions/configure-pages](https://github.com/actions/configure-pages) and [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `actions/configure-pages` from 4 to 5 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/configure-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/cd.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/commitlint.yml | 2 +- .github/workflows/lint-js.yml | 4 ++-- .github/workflows/lint-scss.yml | 4 ++-- .github/workflows/pr-filter.yml | 2 +- .github/workflows/starter/pages-deploy.yml | 6 +++--- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index cd67b6d28..9fce934d0 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,14 +14,14 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.3 bundler-cache: true - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 118fc715a..d5d2b8bc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # for posts's lastmod @@ -42,7 +42,7 @@ jobs: bundler-cache: true - name: Setup Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e460e49aa..f3f5bd32b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index ef14388bc..a357ba12d 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -11,5 +11,5 @@ jobs: commitlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: wagoid/commitlint-github-action@v6 diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml index 205f47900..fd6d08f62 100644 --- a/.github/workflows/lint-js.yml +++ b/.github/workflows/lint-js.yml @@ -16,10 +16,10 @@ jobs: lint-js: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/lint-scss.yml b/.github/workflows/lint-scss.yml index 48d8a7263..bf02eea50 100644 --- a/.github/workflows/lint-scss.yml +++ b/.github/workflows/lint-scss.yml @@ -12,10 +12,10 @@ jobs: lint-scss: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: lts/* diff --git a/.github/workflows/pr-filter.yml b/.github/workflows/pr-filter.yml index ee3f09db2..117b20a7f 100644 --- a/.github/workflows/pr-filter.yml +++ b/.github/workflows/pr-filter.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check PR Content id: intercept diff --git a/.github/workflows/starter/pages-deploy.yml b/.github/workflows/starter/pages-deploy.yml index cc28f99fd..9ee4a240a 100644 --- a/.github/workflows/starter/pages-deploy.yml +++ b/.github/workflows/starter/pages-deploy.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # submodules: true @@ -37,7 +37,7 @@ jobs: - name: Setup Pages id: pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v5 - name: Setup Ruby uses: ruby/setup-ruby@v1 @@ -57,7 +57,7 @@ jobs: \-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/" - name: Upload site artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: "_site${{ steps.pages.outputs.base_path }}" From 8fd56560a4b990fad6ab7eb63347c23b8352455d Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sat, 14 Mar 2026 18:57:52 +0800 Subject: [PATCH 10/13] docs: fix typos in tutorial --- _posts/2019-08-08-text-and-typography.md | 5 +++-- _posts/2019-08-08-write-a-new-post.md | 10 +++++----- _posts/2019-08-09-getting-started.md | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/_posts/2019-08-08-text-and-typography.md b/_posts/2019-08-08-text-and-typography.md index a8db26a00..e6e50060d 100644 --- a/_posts/2019-08-08-text-and-typography.md +++ b/_posts/2019-08-08-text-and-typography.md @@ -99,7 +99,7 @@ Moon ## Footnote -Click the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2]. +Clicking the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2]. ## Inline code @@ -113,7 +113,8 @@ Here is the `/path/to/the/file.extend`{: .filepath}. ### Common -```text + +``` This is a common code snippet, without syntax highlight and line number. ``` diff --git a/_posts/2019-08-08-write-a-new-post.md b/_posts/2019-08-08-write-a-new-post.md index f048f013c..138b56b83 100644 --- a/_posts/2019-08-08-write-a-new-post.md +++ b/_posts/2019-08-08-write-a-new-post.md @@ -7,7 +7,7 @@ tags: [writing] render_with_liquid: false --- -This tutorial will guide you how to write a post in the _Chirpy_ template, and it's worth reading even if you've used Jekyll before, as many features require specific variables to be set. +This tutorial will guide you on how to write a post in the _Chirpy_ template, and it's worth reading even if you've used Jekyll before, as many features require specific variables to be set. ## Naming and Path @@ -173,7 +173,7 @@ By default, the image is centered, but you can specify the position by using one - **Normal position** - Image will be left aligned in below sample: + The image will be left aligned in the below sample: ```markdown ![Desktop View](/assets/img/sample/mockup.png){: .normal } @@ -277,7 +277,7 @@ The following table shows how to get the two parameters we need in a given video Spotify supports some additional parameters: -- `compact` - to display compact player instead (ex. `{% include embed/spotify.html id='3OuMIIFP5TxM8tLXMWYPGV' compact=1 %}`); +- `compact` - to display a compact player instead (ex. `{% include embed/spotify.html id='3OuMIIFP5TxM8tLXMWYPGV' compact=1 %}`); - `dark` - to force dark theme (ex. `{% include embed/spotify.html id='3OuMIIFP5TxM8tLXMWYPGV' dark=1 %}`). ### Video Files @@ -293,7 +293,7 @@ Where `URL` is a URL to a video file e.g. `/path/to/sample/video.mp4`. You can also specify additional attributes for the embedded video file. Here is a full list of attributes allowed. - `poster='/path/to/poster.png'` — poster image for a video that is shown while video is downloading -- `title='Text'` — title for a video that appears below the video and looks same as for images +- `title='Text'` — title for a video that appears below the video and looks the same as for images - `autoplay=true` — video automatically begins to play back as soon as it can - `loop=true` — automatically seek back to the start upon reaching the end of the video - `muted=true` — audio will be initially silenced @@ -326,7 +326,7 @@ Where `URL` is a URL to an audio file e.g. `/path/to/audio.mp3`. You can also specify additional attributes for the embedded audio file. Here is a full list of attributes allowed. -- `title='Text'` — title for an audio that appears below the audio and looks same as for images +- `title='Text'` — title for an audio that appears below the audio and looks the same as for images - `types` — specify the extensions of additional audio formats separated by `|`. Ensure these files exist in the same directory as your primary audio file. Consider an example using all of the above: diff --git a/_posts/2019-08-09-getting-started.md b/_posts/2019-08-09-getting-started.md index 71383938b..9bc843288 100644 --- a/_posts/2019-08-09-getting-started.md +++ b/_posts/2019-08-09-getting-started.md @@ -59,7 +59,7 @@ For Unix-like systems, you can set up the environment natively for optimal perfo 1. Follow the [Jekyll installation guide](https://jekyllrb.com/docs/installation/) to install Jekyll and ensure [Git](https://git-scm.com/) is installed. 2. Clone your repository to your local machine. 3. If you forked the theme, install [Node.js][nodejs] and run `bash tools/init.sh` in the root directory to initialize the repository. -4. Run command `bundle` in the root of your repository to install the dependencies. +4. Run command `bundle install` in the root of your repository to install the dependencies. ## Usage @@ -105,7 +105,7 @@ Before deploying, check the `_config.yml`{: .filepath} file and ensure the `url` Now you can choose _ONE_ of the following methods to deploy your Jekyll site. -### Deploy Using Github Actions +### Deploy Using GitHub Actions Prepare the following: From 6afe5a6d7bc318116056777bceaccc621699fc31 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sat, 14 Mar 2026 19:01:21 +0800 Subject: [PATCH 11/13] refactor: correct typos in comments and identifiers (#2681) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename `loadTooptip` to `loadTooltip` in tooltip-loader.js, components.js, and basic.js - Fix grammar: "This script make" → "This script makes" in search-display.js - Fix "HomgPage" → "HomePage" in post-paginator.html - Fix "CND URL" → "CDN URL" in media-url.html - Fix "locale-dateime.js" → "locale-datetime.js" in datetime.html - Fix "LaTex" → "LaTeX" in language-alias.html - Fix "exist tag" → "existing tag" in refactor-content.html - Fix "Archvies" → "Archives" in _archives.scss - Fix "underlinke" → "underline" in _syntax.scss --- _includes/datetime.html | 2 +- _includes/language-alias.html | 16 +++++++--------- _includes/media-url.html | 2 +- _includes/post-paginator.html | 2 +- _includes/refactor-content.html | 2 +- _javascript/modules/components.js | 2 +- _javascript/modules/components/search-display.js | 2 +- _javascript/modules/components/tooltip-loader.js | 2 +- _javascript/modules/layouts/basic.js | 4 ++-- _sass/base/_syntax.scss | 5 +++-- _sass/pages/_archives.scss | 2 +- 11 files changed, 20 insertions(+), 21 deletions(-) diff --git a/_includes/datetime.html b/_includes/datetime.html index 9f954b698..b07b132aa 100644 --- a/_includes/datetime.html +++ b/_includes/datetime.html @@ -1,6 +1,6 @@ {% assign df_strftime = site.data.locales[include.lang].df.post.strftime | default: '%d/%m/%Y' %} diff --git a/_includes/language-alias.html b/_includes/language-alias.html index abfa7ba92..c2e9adbbf 100644 --- a/_includes/language-alias.html +++ b/_includes/language-alias.html @@ -1,9 +1,7 @@ {% comment %} - Convert the alias of the syntax language to the official name See: - {% endcomment %} {% assign _lang = include.language | default: '' %} @@ -20,13 +18,13 @@ {% when 'coffeescript', 'coffee', 'coffee-script' %} {{ 'CoffeeScript' }} {% when 'cs', 'csharp' %} - {{ 'C#' }} + {{ 'C#' }} {% when 'erl' %} {{ 'Erlang' }} {% when 'graphql' %} - {{ 'GraphQL' }} + {{ 'GraphQL' }} {% when 'haskell', 'hs' %} - {{ 'Haskell' }} + {{ 'Haskell' }} {% when 'javascript', 'js' %} {{ 'JavaScript' }} {% when 'make', 'mf', 'gnumake', 'bsdmake' %} @@ -39,22 +37,22 @@ {{ 'Objective-C' }} {% when 'perl', 'pl' %} {{ 'Perl' }} - {% when 'php','php3','php4','php5' %} + {% when 'php', 'php3', 'php4', 'php5' %} {{ 'PHP' }} {% when 'py' %} {{ 'Python' }} {% when 'rb' %} {{ 'Ruby' }} - {% when 'rs','no_run','ignore','should_panic' %} + {% when 'rs', 'no_run', 'ignore', 'should_panic' %} {{ 'Rust' }} {% when 'bash', 'zsh', 'ksh', 'sh' %} {{ 'Shell' }} {% when 'st', 'squeak' %} {{ 'Smalltalk' }} - {% when 'tex'%} + {% when 'tex' %} {{ 'TeX' }} {% when 'latex' %} - {{ 'LaTex' }} + {{ 'LaTeX' }} {% when 'ts', 'typescript' %} {{ 'TypeScript' }} {% when 'vb', 'visualbasic' %} diff --git a/_includes/media-url.html b/_includes/media-url.html index ea4107502..7ace24a53 100644 --- a/_includes/media-url.html +++ b/_includes/media-url.html @@ -17,7 +17,7 @@ {%- comment -%} Add media resources subpath prefix {%- endcomment -%} {% assign url = include.subpath | default: '' | append: '/' | append: url %} - {%- comment -%} Prepend CND URL {%- endcomment -%} + {%- comment -%} Prepend CDN URL {%- endcomment -%} {% if site.cdn %} {% assign url = site.cdn | append: '/' | append: url %} {% endif %} diff --git a/_includes/post-paginator.html b/_includes/post-paginator.html index c74e978a7..5ccad708d 100644 --- a/_includes/post-paginator.html +++ b/_includes/post-paginator.html @@ -1,4 +1,4 @@ - +