gitextract_gso752j0/ ├── .devcontainer/ │ ├── devcontainer.json │ └── post-create.sh ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── DISCUSSION_TEMPLATE/ │ │ ├── general.yml │ │ ├── ideas.yml │ │ └── q-a.yml │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── codeql/ │ │ └── codeql-config.yml │ ├── dependabot.yml │ └── workflows/ │ ├── cd.yml │ ├── ci.yml │ ├── codeql.yml │ ├── commitlint.yml │ ├── lint-js.yml │ ├── lint-scss.yml │ ├── pr-filter.yml │ ├── publish.yml │ ├── scripts/ │ │ └── pr-filter.js │ ├── stale.yml │ └── starter/ │ └── pages-deploy.yml ├── .gitignore ├── .gitmodules ├── .husky/ │ └── commit-msg ├── .markdownlint.json ├── .nojekyll ├── .stylelintrc.json ├── .vscode/ │ ├── extensions.json │ ├── settings.json │ └── tasks.json ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _data/ │ ├── authors.yml │ ├── contact.yml │ ├── locales/ │ │ ├── ar.yml │ │ ├── bg-BG.yml │ │ ├── ca-ES.yml │ │ ├── cs-CZ.yml │ │ ├── da-DK.yml │ │ ├── de-DE.yml │ │ ├── dv‑MV.yml │ │ ├── el-GR.yml │ │ ├── en.yml │ │ ├── es-ES.yml │ │ ├── fa-IR.yml │ │ ├── fi-FI.yml │ │ ├── fr-FR.yml │ │ ├── hu-HU.yml │ │ ├── id-ID.yml │ │ ├── it-IT.yml │ │ ├── ja-JP.yml │ │ ├── ko-KR.yml │ │ ├── ku-IQ.yml │ │ ├── my-MM.yml │ │ ├── nl-NL.yml │ │ ├── ps‑AF.yml │ │ ├── pt-BR.yml │ │ ├── ru-RU.yml │ │ ├── sl-SI.yml │ │ ├── sv-SE.yml │ │ ├── th.yml │ │ ├── tr-TR.yml │ │ ├── uk-UA.yml │ │ ├── ur-PK.yml │ │ ├── vi-VN.yml │ │ ├── zh-CN.yml │ │ └── zh-TW.yml │ ├── media.yml │ ├── origin/ │ │ ├── basic.yml │ │ └── cors.yml │ └── share.yml ├── _includes/ │ ├── analytics/ │ │ ├── cloudflare.html │ │ ├── fathom.html │ │ ├── goatcounter.html │ │ ├── google.html │ │ ├── matomo.html │ │ └── umami.html │ ├── comment.html │ ├── comments/ │ │ ├── disqus.html │ │ ├── giscus.html │ │ └── utterances.html │ ├── datetime.html │ ├── embed/ │ │ ├── audio.html │ │ ├── bilibili.html │ │ ├── spotify.html │ │ ├── twitch.html │ │ ├── video.html │ │ └── youtube.html │ ├── favicons.html │ ├── footer.html │ ├── head.html │ ├── js-selector.html │ ├── jsdelivr-combine.html │ ├── lang.html │ ├── language-alias.html │ ├── media-url.html │ ├── metadata-hook.html │ ├── notification.html │ ├── origin-type.html │ ├── pageviews/ │ │ └── goatcounter.html │ ├── post-nav.html │ ├── post-paginator.html │ ├── post-sharing.html │ ├── post-summary.html │ ├── read-time.html │ ├── refactor-content.html │ ├── related-posts.html │ ├── search-loader.html │ ├── search-results.html │ ├── sidebar.html │ ├── toc-status.html │ ├── toc.html │ ├── topbar.html │ ├── trending-tags.html │ └── update-list.html ├── _javascript/ │ ├── categories.js │ ├── commons.js │ ├── home.js │ ├── misc.js │ ├── modules/ │ │ ├── components/ │ │ │ ├── back-to-top.js │ │ │ ├── category-collapse.js │ │ │ ├── clipboard.js │ │ │ ├── img-loading.js │ │ │ ├── img-popup.js │ │ │ ├── locale-datetime.js │ │ │ ├── mermaid.js │ │ │ ├── mode-toggle.js │ │ │ ├── search-display.js │ │ │ ├── toc/ │ │ │ │ ├── toc-desktop.js │ │ │ │ └── toc-mobile.js │ │ │ ├── toc.js │ │ │ └── tooltip-loader.js │ │ ├── components.js │ │ ├── layouts/ │ │ │ ├── basic.js │ │ │ ├── sidebar.js │ │ │ └── topbar.js │ │ └── layouts.js │ ├── page.js │ ├── post.js │ ├── pwa/ │ │ ├── app.js │ │ └── sw.js │ └── theme.js ├── _layouts/ │ ├── archives.html │ ├── categories.html │ ├── category.html │ ├── compress.html │ ├── default.html │ ├── home.html │ ├── page.html │ ├── post.html │ ├── tag.html │ └── tags.html ├── _plugins/ │ └── posts-lastmod-hook.rb ├── _posts/ │ ├── 2019-08-08-text-and-typography.md │ ├── 2019-08-08-write-a-new-post.md │ ├── 2019-08-09-getting-started.md │ └── 2019-08-11-customize-the-favicon.md ├── _sass/ │ ├── abstracts/ │ │ ├── _breakpoints.scss │ │ ├── _index.scss │ │ ├── _mixins.scss │ │ ├── _placeholders.scss │ │ └── _variables.scss │ ├── base/ │ │ ├── _base.scss │ │ ├── _index.scss │ │ ├── _reset.scss │ │ ├── _syntax.scss │ │ └── _typography.scss │ ├── components/ │ │ ├── _buttons.scss │ │ ├── _index.scss │ │ └── _popups.scss │ ├── layout/ │ │ ├── _footer.scss │ │ ├── _index.scss │ │ ├── _panel.scss │ │ ├── _sidebar.scss │ │ └── _topbar.scss │ ├── main.bundle.scss │ ├── main.scss │ ├── pages/ │ │ ├── _archives.scss │ │ ├── _categories.scss │ │ ├── _category-tag.scss │ │ ├── _home.scss │ │ ├── _index.scss │ │ ├── _post.scss │ │ ├── _search.scss │ │ └── _tags.scss │ └── themes/ │ ├── _dark.scss │ └── _light.scss ├── _tabs/ │ ├── about.md │ ├── archives.md │ ├── categories.md │ └── tags.md ├── assets/ │ ├── 404.html │ ├── css/ │ │ └── jekyll-theme-chirpy.scss │ ├── feed.xml │ ├── img/ │ │ └── favicons/ │ │ └── site.webmanifest │ ├── js/ │ │ └── data/ │ │ ├── mathjax.js │ │ ├── search.json │ │ └── swconf.js │ └── robots.txt ├── docs/ │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── SECURITY.md ├── eslint.config.js ├── index.html ├── jekyll-theme-chirpy.gemspec ├── package.json ├── purgecss.js ├── rollup.config.js └── tools/ ├── init.sh ├── release.sh ├── run.sh └── test.sh