gitextract_a5dd3pfx/ ├── .githooks/ │ ├── commit-msg │ └── pre-commit ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 2_bug_report.yml │ │ ├── 3_feature_request.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── renovate.json │ └── workflows/ │ ├── cd.yml │ ├── ci.yml │ ├── git-sumi.yml │ └── upgrade-deps.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc.toml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cliff.toml ├── config.toml ├── content/ │ ├── _index.ar.md │ ├── _index.ca.md │ ├── _index.es.md │ ├── _index.md │ ├── archive/ │ │ ├── _index.ar.md │ │ ├── _index.ca.md │ │ ├── _index.es.md │ │ └── _index.md │ ├── blog/ │ │ ├── _index.ar.md │ │ ├── _index.ca.md │ │ ├── _index.es.md │ │ ├── _index.md │ │ ├── comments/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── custom-font-subset/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── customise-tabi/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── faq-languages/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── javascript/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── markdown/ │ │ │ ├── index.ar.md │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── mastering-tabi-settings/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── security/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── series/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ ├── shortcodes/ │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ └── toc/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── pages/ │ │ ├── _index.ar.md │ │ ├── _index.ca.md │ │ ├── _index.es.md │ │ ├── _index.md │ │ ├── about/ │ │ │ ├── index.ar.md │ │ │ ├── index.ca.md │ │ │ ├── index.es.md │ │ │ └── index.md │ │ └── privacy/ │ │ ├── index.ar.md │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ └── projects/ │ ├── _index.ar.md │ ├── _index.ca.md │ ├── _index.es.md │ ├── _index.md │ ├── bunbu/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── doteki/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── git-sumi/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── iine/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── nani/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── nemui/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── ramu/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── shuku/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── streaming-royalties-calculator/ │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ ├── tabi/ │ │ ├── index.ar.md │ │ ├── index.ca.md │ │ ├── index.es.md │ │ └── index.md │ └── zutsu/ │ ├── index.ca.md │ ├── index.es.md │ └── index.md ├── i18n/ │ ├── ar.toml │ ├── ca.toml │ ├── de.toml │ ├── en.toml │ ├── es.toml │ ├── et.toml │ ├── fa.toml │ ├── fi.toml │ ├── fr.toml │ ├── hi.toml │ ├── it.toml │ ├── ja.toml │ ├── ko.toml │ ├── nl.toml │ ├── or.toml │ ├── pt-BR.toml │ ├── pt-PT.toml │ ├── ru.toml │ ├── uk.toml │ ├── zh-Hans.toml │ └── zh-Hant.toml ├── sass/ │ ├── main.scss │ ├── parts/ │ │ ├── _admonitions.scss │ │ ├── _archive.scss │ │ ├── _aside.scss │ │ ├── _cards.scss │ │ ├── _code.scss │ │ ├── _comments.scss │ │ ├── _footer.scss │ │ ├── _header-anchor.scss │ │ ├── _header.scss │ │ ├── _home-banner.scss │ │ ├── _iine.scss │ │ ├── _image-hover.scss │ │ ├── _image-toggler.scss │ │ ├── _image.scss │ │ ├── _misc.scss │ │ ├── _multilingual_quote.scss │ │ ├── _pagination.scss │ │ ├── _posts_list.scss │ │ ├── _quick_navigation_buttons.scss │ │ ├── _search.scss │ │ ├── _spoiler.scss │ │ ├── _syntax_theme.scss │ │ ├── _table.scss │ │ ├── _tags.scss │ │ ├── _theme-switch.scss │ │ ├── _webmention.scss │ │ └── _zola-error.scss │ └── skins/ │ ├── blue.scss │ ├── evangelion.scss │ ├── indigo_ingot.scss │ ├── lavender.scss │ ├── lowcontrast_orange.scss │ ├── lowcontrast_peach.scss │ ├── lowcontrast_pink.scss │ ├── mint.scss │ ├── monochrome.scss │ ├── red.scss │ ├── sakura.scss │ └── teal.scss ├── scripts/ │ └── upgrade-deps ├── static/ │ ├── custom_subset.css │ ├── feed_style.xsl │ ├── inter_subset_en.css │ ├── inter_subset_es.css │ ├── isso.css │ ├── js/ │ │ ├── codeBlockNameLinks.js │ │ ├── copyCodeToClipboard.js │ │ ├── decodeMail.js │ │ ├── filterCards.js │ │ ├── footnoteBacklinks.js │ │ ├── giscus.js │ │ ├── hyvortalk.js │ │ ├── initializePlausible.js │ │ ├── initializeTheme.js │ │ ├── isso.js │ │ ├── loadComments.js │ │ ├── lunr/ │ │ │ ├── lunr.da.js │ │ │ ├── lunr.de.js │ │ │ ├── lunr.du.js │ │ │ ├── lunr.es.js │ │ │ ├── lunr.fi.js │ │ │ ├── lunr.fr.js │ │ │ ├── lunr.hu.js │ │ │ ├── lunr.it.js │ │ │ ├── lunr.ja.js │ │ │ ├── lunr.no.js │ │ │ ├── lunr.pt.js │ │ │ ├── lunr.ro.js │ │ │ ├── lunr.ru.js │ │ │ ├── lunr.sv.js │ │ │ ├── lunr.tr.js │ │ │ ├── lunr.zh.js │ │ │ ├── lunrStemmerSupport.js │ │ │ └── tinyseg.js │ │ ├── searchElasticlunr.js │ │ ├── sortTable.js │ │ ├── themeSwitcher.js │ │ ├── utterances.js │ │ └── webmention.js │ ├── no_js.css │ ├── sitemap_style.xsl │ └── social_icons/ │ └── LICENSE ├── sumi.toml ├── templates/ │ ├── 404.html │ ├── anchor-link.html │ ├── archive.html │ ├── atom.xml │ ├── base.html │ ├── cards.html │ ├── index.html │ ├── info-page.html │ ├── internal/ │ │ └── alias.html │ ├── macros/ │ │ ├── feed_utils.html │ │ ├── format_date.html │ │ ├── list_posts.html │ │ ├── page_header.html │ │ ├── rel_attributes.html │ │ ├── series_page.html │ │ ├── settings.html │ │ ├── table_of_contents.html │ │ ├── target_attribute.html │ │ └── translate.html │ ├── page.html │ ├── partials/ │ │ ├── analytics.html │ │ ├── cards_pages.html │ │ ├── comments.html │ │ ├── content_security_policy.html │ │ ├── copyright.html │ │ ├── extra_features.html │ │ ├── filter_card_tags.html │ │ ├── footer.html │ │ ├── hcard.html │ │ ├── hcard_small.html │ │ ├── header.html │ │ ├── history_url.html │ │ ├── home_banner.html │ │ ├── iine_button.html │ │ ├── language_switcher.html │ │ ├── main_page_posts_list.html │ │ ├── main_page_projects_list.html │ │ ├── multilingual_tags.html │ │ ├── nav.html │ │ ├── paginate.html │ │ ├── search_modal.html │ │ ├── social_media_images.html │ │ ├── theme_switcher.html │ │ ├── title.html │ │ └── webmentions.html │ ├── section.html │ ├── series.html │ ├── shortcodes/ │ │ ├── add_src_to_code_block.html │ │ ├── admonition.html │ │ ├── aside.html │ │ ├── dimmable_image.html │ │ ├── dual_theme_image.html │ │ ├── force_text_direction.html │ │ ├── full_width_image.html │ │ ├── iine.html │ │ ├── image_hover.html │ │ ├── image_toggler.html │ │ ├── invertible_image.html │ │ ├── mermaid.html │ │ ├── multilingual_quote.html │ │ ├── references.html │ │ ├── remote_text.html │ │ ├── spoiler.html │ │ ├── toc.html │ │ └── wide_container.html │ ├── sitemap.xml │ ├── tags/ │ │ ├── list.html │ │ └── single.html │ ├── taxonomy_list.html │ └── taxonomy_single.html └── theme.toml