├── CNAME ├── .gitattributes ├── Readme.md ├── _data └── languages.yml ├── ads.txt ├── study.html ├── assets ├── images │ ├── logo.png │ ├── icon_16x16.png │ ├── icon_32x32.png │ ├── icon_180x180.png │ └── icon_32x32.svg ├── attachments │ └── uninstall-image-viewer.bat ├── js │ ├── tablesorter.js │ ├── 404.js │ ├── tags.js │ └── search.js └── css │ ├── _i18n.scss │ ├── interviews.scss │ ├── style.scss │ ├── _highlight.scss │ └── _variables_override.scss ├── jsconfig.json ├── package.json ├── study_post.html ├── _layouts ├── redirect.html ├── plain.html └── default.html ├── 404.md ├── .gitignore ├── _plugins ├── image_cdn.rb ├── algolia_hook.rb └── i18n.rb ├── Gemfile ├── _includes ├── image.html ├── video.html ├── heading.html ├── figure.html ├── header.html ├── footer.html ├── content.html └── head.html ├── pages.json ├── .prettierrc.json ├── search.html ├── _en ├── search.html ├── 2023-10-16-Suzumiya-Haruhi-no-Chokuretsu-Chinese-Localization.md └── posts.html ├── _posts ├── 2022-07-04-Ruanyifeng-No-Block-AdBlock.md ├── 2023-10-16-Suzumiya-Haruhi-no-Chokuretsu-Chinese-Localization.md ├── 2021-10-25-Buddy-Mission-Bond.md ├── 2024-11-02-Pokemon-Gen-4-Font-Patch.md ├── 2019-11-20-How-to-Insert-Formulas-in-Wechat-Articles.md ├── 2025-06-12-Premiere-Pro-Color-Range.md ├── 2024-07-10-Persona-Q2-Chinese-Localization.md ├── 2022-09-04-Take-and-Save-a-Screenshot-on-a-Windows-PC-with-Joy-Con.md ├── 2022-01-11-Automate-Portrait-Keying-in-OBS-without-Green-Screen.md ├── 2020-02-17-Danmaku-Wall.md ├── 2019-01-18-Pokemon-Surf-Glitch.md ├── 2024-11-09-Steam-Unable-to-Register.md ├── 2024-11-04-NitroPatcher.md ├── 2021-10-14-Try-to-Extract-Messages-from-Games.md ├── 2018-06-05-About.md ├── 2019-11-01-Tenki-no-ko.md ├── 2023-03-15-A-Purchase-in-Surugaya.md ├── 2020-07-31-How-to-Download-Subtitle-for-Online-Class.md ├── 2020-03-07-Update-Study-Search-and-Pdf.md ├── 2019-09-25-PKU-Disk.md ├── 2025-06-26-Remove-Intelligent-Image-Viewer.md ├── 2019-11-29-Save-Your-Unsaved-PPT-File.md ├── 2023-03-29-Paranormasight-Translation.md ├── 2020-02-02-How-to-Get-e-Textbooks.md ├── 2023-11-06-Jellyfin-Plugin-Douban.md ├── 2021-11-15-Download-Pdf-File-from-Cnki.md ├── 2019-11-26-Managing-Chinese-Literature-with-EndNote.md ├── 2019-03-02-Pokemon-Tweaking.md ├── 2020-02-16-Update-3-0.md ├── 2024-01-01-Migrate-LiverRe-comments-to-Giscus.md ├── 2020-10-30-Automatic-Numbering-in-Microsoft-Word.md ├── 2025-06-30-G-Fusion-Game-Fest-2025.md ├── 2020-07-27-Run-Ubuntu-in-Windows-10.md ├── 2025-01-01-2024-ACGN-Reviews.md ├── 2023-02-24-Summer-Time-Rendering-Another-Horizon-Translation.md ├── 2018-10-12-Luigi-Mansion-Chinese-Localization.md ├── 2021-12-28-2021-ACGN-Reviews.md ├── 2023-05-28-DIY-My-Computer.md └── 2025-04-25-Super-Princess-Peach-Chinese-Localization-4.md ├── posts.html ├── _i18n ├── zh-cn.yml └── en.yml ├── xzonn.md ├── .github └── workflows │ └── publish.yml ├── _config.yml ├── index.html └── Gemfile.lock /CNAME: -------------------------------------------------------------------------------- 1 | xzonn.top -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat binary 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | [Xzonn 的小站](https://xzonn.top/) -------------------------------------------------------------------------------- /_data/languages.yml: -------------------------------------------------------------------------------- 1 | alias: 2 | zh-cn: zh-CN 3 | en: en -------------------------------------------------------------------------------- /ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-8317643192080236, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /study.html: -------------------------------------------------------------------------------- 1 | --- 2 | destination: /study/posts.html 3 | layout: redirect 4 | sitemap: false 5 | --- -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzonn/xzonn.github.io/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "typeAcquisition": { 3 | "include": [ 4 | "jquery" 5 | ] 6 | } 7 | } -------------------------------------------------------------------------------- /assets/images/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzonn/xzonn.github.io/HEAD/assets/images/icon_16x16.png -------------------------------------------------------------------------------- /assets/images/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzonn/xzonn.github.io/HEAD/assets/images/icon_32x32.png -------------------------------------------------------------------------------- /assets/images/icon_180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzonn/xzonn.github.io/HEAD/assets/images/icon_180x180.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bootstrap": "^5.3.0", 4 | "bootstrap-icons": "^1.10.5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /study_post.html: -------------------------------------------------------------------------------- 1 | --- 2 | destination: /study/ 3 | layout: redirect 4 | permalink: /posts/Study.html 5 | sitemap: false 6 | --- -------------------------------------------------------------------------------- /assets/attachments/uninstall-image-viewer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xzonn/xzonn.github.io/HEAD/assets/attachments/uninstall-image-viewer.bat -------------------------------------------------------------------------------- /assets/js/tablesorter.js: -------------------------------------------------------------------------------- 1 | $.getScript("https://cdn.jsdelivr.net/npm/tablesorter@2.31.2/dist/js/jquery.tablesorter.combined.min.js", () => 2 | $(".tablesorter").tablesorter() 3 | ); 4 | -------------------------------------------------------------------------------- /_layouts/redirect.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /assets/css/_i18n.scss: -------------------------------------------------------------------------------- 1 | html[lang="en"] { 2 | .xz-meta-infomation .xz-meta-update::before { 3 | content: "Updated on:\00a0" 4 | } 5 | 6 | .xz-meta-infomation .xz-meta-tags::before { 7 | content: "Tags:\00a0" 8 | } 9 | } -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | info: 你似乎来到了错误的地方…… 3 | js: 404 4 | no_comment: true 5 | no_sidenav: true 6 | sitemap: false 7 | title: 404 NOT FOUND 8 | --- 9 | 这个页面目前什么也没有。请检查您的链接是否正确。如果您是从其他页面跳转至此,请及时反馈。 10 | 11 | 您可以 **[返回首页](/)** 或者关闭本页面。 -------------------------------------------------------------------------------- /_layouts/plain.html: -------------------------------------------------------------------------------- 1 | {% capture src %}src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201024%201024%22%3E%3C%2Fsvg%3E" data-src={% endcapture %}{{ content | replace: src, "src="}} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Jekyll 2 | _drafts/ 3 | _site/ 4 | .sass-cache/ 5 | .jekyll-cache/ 6 | .jekyll-metadata 7 | *.draft.md 8 | 9 | # Bundler 10 | .bundle/ 11 | vendor/ 12 | 13 | # Npm 14 | node_modules/ 15 | 16 | # Visual Studio 17 | .vs/ 18 | Debug/ 19 | 20 | # Visual Studio Code 21 | .vscode/ 22 | *.code-workspace -------------------------------------------------------------------------------- /_plugins/image_cdn.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | module ImageCdn 3 | def image_cdn(url) 4 | return nil if url.nil? 5 | @image_cdn = @context.registers[:site].config['image_cdn'] 6 | url.include?('/') ? url : "#{@image_cdn}/#{url}" 7 | end 8 | end 9 | end 10 | 11 | Liquid::Template.register_filter(Jekyll::ImageCdn) 12 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "jekyll", "~> 4.3", group: :jekyll_plugins 3 | gem "webrick", "~> 1.8" 4 | gem "kramdown", "~> 2.4" 5 | gem "kramdown-parser-gfm", "~> 1.1" 6 | gem "sass-embedded", "< 1.70" 7 | group :jekyll_plugins do 8 | gem "jekyll-algolia" 9 | gem "jekyll-feed" 10 | gem "jekyll-relative-links" 11 | gem "jekyll-sass-converter" 12 | gem "jekyll-sitemap" 13 | end 14 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head.html %} 5 | 6 | 7 | {% include header.html %} 8 | {% include heading.html %} 9 | {% include content.html %} 10 | {% include footer.html %} 11 | 12 | -------------------------------------------------------------------------------- /_includes/image.html: -------------------------------------------------------------------------------- 1 || Title | Tags | Created on | Updated on |
|---|---|---|---|
| {{ post.title }} | 21 |{% for tag in post.tags %} 22 | {{ tag }}{% endfor %} 23 | | 24 |{{ post.date | date : "%Y-%m-%d %H:%M" }} | 25 |{{ post.last_modified_at| date : "%Y-%m-%d %H:%M" }} | 26 |
| 标题 | 标签 | 创建时间 | 修改时间 |
|---|---|---|---|
| {{ post.title }} | 21 |{% for tag in post.tags %} 22 | {{ tag }}{% endfor %} 23 | | 24 |{{ post.date | date : "%Y-%m-%d %H:%M" }} | 25 |{{ post.last_modified_at| date : "%Y-%m-%d %H:%M" }} | 26 |