├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .python-version ├── .ruby-version ├── .stylelintrc.json ├── 404.html ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── fork-note.html ├── head.html ├── header.html ├── meta-theme-color.html ├── nav.html └── toggle-navbar.coffee ├── _layouts ├── default.html ├── home.html ├── page.html └── post.html ├── _sass ├── kbd.scss ├── menu-icon.scss ├── nav-folder-menu.scss └── sticky-footer.scss ├── assets ├── favicon.ico ├── main.coffee └── main.scss ├── coffeelint.json ├── docs ├── comments.md ├── default.md ├── delimiters.md ├── folding_in_code.md ├── folding_in_comment.md ├── introduction.md ├── keywords.md ├── numbers.md └── operators.md ├── images ├── comments_01.png ├── comments_02.png ├── comments_03.png ├── comments_04.png ├── comments_05.png ├── comments_06.png ├── comments_07.png ├── comments_08.png ├── comments_09.png ├── comments_10.png ├── comments_11.png ├── comments_12.png ├── comments_13.png ├── comments_14.png ├── comments_15.png ├── comments_16.png ├── comments_17.png ├── comments_18.png ├── comments_19.png ├── default_01.png ├── default_02.png ├── delimiters_01.png ├── delimiters_02.png ├── delimiters_03.png ├── delimiters_04.png ├── delimiters_05.png ├── delimiters_06.png ├── delimiters_07.png ├── delimiters_08.png ├── delimiters_09.png ├── delimiters_10.png ├── delimiters_11.png ├── delimiters_12.png ├── delimiters_13.png ├── folding_in_code_01.png ├── folding_in_code_02.png ├── folding_in_code_03.png ├── folding_in_code_04.png ├── folding_in_comment_01.png ├── folding_in_comment_02.png ├── folding_in_comment_03.png ├── folding_in_comment_04.png ├── folding_in_comment_05.png ├── folding_in_comment_06.png ├── introduction_01.png ├── introduction_02.png ├── introduction_03.png ├── introduction_04.png ├── introduction_05.png ├── keywords.png ├── numbers_01.png ├── numbers_02.png ├── operators_01.png └── operators_02.png └── index.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | root=true 5 | 6 | [*] 7 | charset=utf-8 8 | # end_of_line=lf # text=auto in .gitattributes 9 | indent_style=tab 10 | insert_final_newline=true 11 | 12 | [{*.yml,*.yaml,bower.json,package.json,package-lock.json}] 13 | indent_style=space 14 | indent_size=2 15 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.bash text eol=lf 4 | *.fish text eol=lf 5 | *.sh text eol=lf 6 | *.bat text eol=crlf 7 | *.cmd text eol=crlf 8 | *.ps1 text eol=crlf 9 | 10 | *.png binary 11 | *.jpg binary 12 | *.jpeg binary 13 | *.gif binary 14 | *.ico binary 15 | *.svg text 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # this repo 2 | # ========= 3 | 4 | .bundle/* 5 | vendor/* 6 | 7 | # Jekyll default 8 | # ============== 9 | 10 | _site/ 11 | .sass-cache/ 12 | .jekyll-metadata 13 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "_sass/bootstrap"] 2 | path = _sass/bootstrap 3 | url = https://github.com/twbs/bootstrap.git 4 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.9.13 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.6 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "indentation": "tab" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | weight: 50 4 | --- 5 | 6 | 19 | 20 |
Page not found :(
24 |The requested page could not be found.
25 |4 | Note: 5 |
6 |7 | This is a fork (copy) from original developer, {{ site.author | default: site.github.owner_name | escape }}. Please refer to this link for updated docs. 8 |
9 |10 | This piece of note will not be rendered in original site. Thanks for your work, developers. 11 |
12 |