2022-09-29 02:40:26 +08:00
|
|
|
|
Contributing 贡献
|
|
|
|
|
====
|
|
|
|
|
|
|
|
|
|
感谢您对**备忘清单**贡献的兴趣👍👍,是像您这样的人使 [`Quick Reference`](https://jaywcjlove.github.io/reference) 成为如此出色的网站 🎉🎉。随时提交问题和增强请求。
|
|
|
|
|
|
|
|
|
|
`docs/{filename}.md` 文件将被处理成备忘清单,让我们创建或编辑一个 `markdown` 文件:
|
|
|
|
|
|
|
|
|
|
## 前沿问题
|
|
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
|
备忘清单 标题
|
|
|
|
|
===
|
|
|
|
|
|
|
|
|
|
这是您可以在 Quick Reference 备忘清单上使用的样式参考!【备忘清单介绍】
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-11 11:00:44 +08:00
|
|
|
|
只需要 `标题<h1>` 和 `介绍` (标题下面)。脚本会自动识别,通过 GitHub Actions 自动发布 [`Quick Reference`](https://jaywcjlove.github.io/reference) 网站。
|
2022-09-29 02:40:26 +08:00
|
|
|
|
|
2022-10-28 11:13:41 +08:00
|
|
|
|
## 目录结构
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
.
|
|
|
|
|
├── CONTRIBUTING.md # 贡献说明
|
|
|
|
|
├── Dockerfile
|
|
|
|
|
├── LICENSE
|
|
|
|
|
├── README.md # Home(首页) 内容
|
|
|
|
|
├── dist # 编译后的静态资源目录
|
|
|
|
|
├── docs # Markdown 文档(快速参考备忘清单【速查表】)
|
|
|
|
|
│ ├── bash.md
|
|
|
|
|
│ ├── ....
|
|
|
|
|
│ └── yaml.md
|
|
|
|
|
├── package.json
|
|
|
|
|
└── scripts # MD 转 HTML 的编译脚本
|
2022-10-28 13:53:55 +08:00
|
|
|
|
├── assets # 存放首页 svg 图标文件资源,与 `dosc` 文件名对应
|
2022-10-28 11:13:41 +08:00
|
|
|
|
├── ....
|
|
|
|
|
└── watch.mjs
|
|
|
|
|
```
|
|
|
|
|
|
2022-09-29 02:40:26 +08:00
|
|
|
|
## CSS 类注释
|
|
|
|
|
|
2022-11-11 11:00:44 +08:00
|
|
|
|
[`Quick Reference`](https://jaywcjlove.github.io/reference) 使用 [`@wcj/markdown-to-html`](https://github.com/jaywcjlove/markdown-to-html) 转换 `Markdown`,并使用 [`rehype-attr`](https://github.com/jaywcjlove/rehype-attr) 插件让其支持通过其注释语法添加类和样式。此外,您可以在 Quick Reference 备忘清单上使用样式参考:<https://jaywcjlove.github.io/reference/docs/quickreference.html>
|
2022-09-29 02:40:26 +08:00
|
|
|
|
|
|
|
|
|
最后,参考现有备忘清单的源代码是一个好习惯!
|
|
|
|
|
|
|
|
|
|
## 首页导航
|
|
|
|
|
|
|
|
|
|
[`Quick Reference`](https://jaywcjlove.github.io/reference) 的首页存放在仓库的根目录 `README.md`,[`Quick Reference`](https://jaywcjlove.github.io/reference) 是通过这个 `README.md` 自动生成首页导航,下面是导航实例:
|
|
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
|
## Linux 命令
|
|
|
|
|
|
|
|
|
|
[Cron](./docs/cron.md)<!--rehype:style=background: rgb(239 68 68/var(\-\-bg\-opacity));-->
|
|
|
|
|
[Git](./docs/git.md)<!--rehype:style=background: rgb(215 89 62/var(\-\-bg\-opacity));-->
|
|
|
|
|
<!--rehype:class=home-card-->
|
|
|
|
|
```
|
|
|
|
|
|
2022-10-28 13:53:55 +08:00
|
|
|
|
首页导航图标存放在 `scripts/assets` 目录中,如果你的备忘清单定义为 `docs/cron.md`,那么你的图标就定义为 `cron.svg` 存放到 `scripts/assets` 目录中,重新编译首页当行菜单就拥有了图标。
|
|
|
|
|
|
|
|
|
|
- 图标存放在 [`scripts/assets`](https://github.com/jaywcjlove/reference/blob/main/scripts/assets) 目录中
|
|
|
|
|
- 图片名称与清单名称保持一致 `cron.md` -> `cron.svg` (注意大小写)
|
|
|
|
|
- SVG 图标尺寸 `<svg height="1em" width="1em"`
|
|
|
|
|
- SVG 图标颜色使用继承颜色值 `<svg fill="currentColor"`
|
|
|
|
|
|
2022-11-18 18:14:43 +08:00
|
|
|
|
图标可以在 [icongo 图标搜索](https://icongo.github.io/) 中搜索
|
|
|
|
|
|
2022-11-11 11:00:44 +08:00
|
|
|
|
### 提示配置
|
2022-11-02 01:41:57 +08:00
|
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
|
[Django](./docs/djiango.md)<!--rehype:style=background: rgb(12 75 51/var(\-\-bg\-opacity));&class=contributing-->
|
|
|
|
|
```
|
|
|
|
|
|
2022-11-03 11:49:21 +08:00
|
|
|
|
添加 `contributing` 类名,会在卡片下方添加 _`👆待完善需要您的参与`_,添加 `data-info=👆看看还缺点儿什么?`,更换默认提示文本。
|
2022-11-02 01:41:57 +08:00
|
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
|
[Django](./docs/djiango.md)<!--rehype:style=background: rgb(12 75 51/var(\-\-bg\-opacity));&class=tag&data-lang=Python-->
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
添加 `class=tag&data-lang=Python` 类名和参数,会在卡片右上角标记 _`Python`_
|
|
|
|
|
|
2022-09-29 02:40:26 +08:00
|
|
|
|
## 本地开发
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
npm i # 安装依赖
|
2022-10-05 02:56:18 +08:00
|
|
|
|
npm run build # 编译输出 HTML
|
|
|
|
|
npm run start # 监听 md 文件编译输出 HTML
|
2022-11-11 11:00:44 +08:00
|
|
|
|
```
|
|
|
|
|
|
2022-11-13 02:47:29 +08:00
|
|
|
|
或者你也可以使用 `pnpm` 或者 `yarn` 做为包管理器
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 贡献
|
|
|
|
|
|
|
|
|
|
请参阅[贡献指南](./CONTRIBUTING.md)了解如何开始。一如既往,感谢我们出色的贡献者!
|
|
|
|
|
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<!--GAMFC--><a href="https://github.com/jaywcjlove" title="小弟调调™">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/1680273?v=4" width="42;" alt="小弟调调™"/>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/Jack-Zhang-1314" title="fw_qaq">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/82551626?v=4" width="42;" alt="fw_qaq"/>
|
|
|
|
|
</a>
|
2022-11-21 07:50:44 +00:00
|
|
|
|
<a href="https://github.com/mofelee" title="mofelee">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/5069410?v=4" width="42;" alt="mofelee"/>
|
|
|
|
|
</a>
|
2022-11-18 04:32:27 +00:00
|
|
|
|
<a href="https://github.com/Alex-Programer" title="Alex">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/115539090?v=4" width="42;" alt="Alex"/>
|
|
|
|
|
</a>
|
2022-11-18 01:05:55 +00:00
|
|
|
|
<a href="https://github.com/expoli" title="expoli">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/31023767?v=4" width="42;" alt="expoli"/>
|
|
|
|
|
</a>
|
2022-11-19 18:49:17 +00:00
|
|
|
|
<a href="https://github.com/JeffersonHuang" title="Jefferson">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/47512530?v=4" width="42;" alt="Jefferson"/>
|
|
|
|
|
</a>
|
2022-11-21 01:52:04 +00:00
|
|
|
|
<a href="https://github.com/sjh42" title="42:p">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/34529275?v=4" width="42;" alt="42:p"/>
|
|
|
|
|
</a>
|
2022-11-17 05:05:23 +00:00
|
|
|
|
<a href="https://github.com/partoneplay" title="partoneplay">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/5189132?v=4" width="42;" alt="partoneplay"/>
|
|
|
|
|
</a>
|
2022-11-19 18:49:17 +00:00
|
|
|
|
<a href="https://github.com/ryanhex53" title="ryanhex53">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/360426?v=4" width="42;" alt="ryanhex53"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/catcto" title="喵仙人">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/5467932?v=4" width="42;" alt="喵仙人"/>
|
|
|
|
|
</a>
|
2022-11-16 06:10:59 +00:00
|
|
|
|
<a href="https://github.com/13812700839" title="花殇">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/58072506?v=4" width="42;" alt="花殇"/>
|
2022-11-16 04:58:14 +00:00
|
|
|
|
</a>
|
2022-11-17 03:17:18 +00:00
|
|
|
|
<a href="https://github.com/Smartdousha" title="Anko">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/52566311?v=4" width="42;" alt="Anko"/>
|
|
|
|
|
</a>
|
2022-11-18 08:24:38 +00:00
|
|
|
|
<a href="https://github.com/Brid9e" title="Brid9e">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/85558909?v=4" width="42;" alt="Brid9e"/>
|
|
|
|
|
</a>
|
2022-11-15 06:52:01 +00:00
|
|
|
|
<a href="https://github.com/CharlotteZeng" title="Chart">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/19461184?v=4" width="42;" alt="Chart"/>
|
|
|
|
|
</a>
|
2022-11-18 04:32:27 +00:00
|
|
|
|
<a href="https://github.com/DaiNing810" title="DaiN">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/94962339?v=4" width="42;" alt="DaiN"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/demigodliu" title="DemigodLiu">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/30372735?v=4" width="42;" alt="DemigodLiu"/>
|
|
|
|
|
</a>
|
2022-11-15 01:48:15 +00:00
|
|
|
|
<a href="https://github.com/jasnzhuang" title="Jason Zhuang">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/16612921?v=4" width="42;" alt="Jason Zhuang"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/JetSquirrel" title="JetSquirrel">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/20291255?v=4" width="42;" alt="JetSquirrel"/>
|
|
|
|
|
</a>
|
2022-11-18 07:44:49 +00:00
|
|
|
|
<a href="https://github.com/Lihuagreek" title="Lihuagreek">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/51040740?v=4" width="42;" alt="Lihuagreek"/>
|
|
|
|
|
</a>
|
2022-11-20 08:07:19 +00:00
|
|
|
|
<a href="https://github.com/LufsX" title="LufsX">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/33221883?v=4" width="42;" alt="LufsX"/>
|
|
|
|
|
</a>
|
2022-11-17 09:42:42 +00:00
|
|
|
|
<a href="https://github.com/mariuszmichalowski" title="Mariusz Michalowski">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/92091891?v=4" width="42;" alt="Mariusz Michalowski"/>
|
|
|
|
|
</a>
|
2022-11-15 11:54:32 +00:00
|
|
|
|
<a href="https://github.com/HanaNoryu" title="Noryu">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/109856546?v=4" width="42;" alt="Noryu"/>
|
|
|
|
|
</a>
|
2022-11-18 09:23:59 +00:00
|
|
|
|
<a href="https://github.com/whb1998a" title="WHB">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/44045064?v=4" width="42;" alt="WHB"/>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/y52y" title="Zyj">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/51304324?v=4" width="42;" alt="Zyj"/>
|
|
|
|
|
</a>
|
2022-11-17 03:17:18 +00:00
|
|
|
|
<a href="https://github.com/chyok" title="chyok">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/32629225?v=4" width="42;" alt="chyok"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/gaoxiaoduan" title="coderduan">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/69953511?v=4" width="42;" alt="coderduan"/>
|
|
|
|
|
</a>
|
2022-11-15 05:14:58 +00:00
|
|
|
|
<a href="https://github.com/cool9203" title="cool9203">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/29609607?v=4" width="42;" alt="cool9203"/>
|
|
|
|
|
</a>
|
2022-11-17 03:34:05 +00:00
|
|
|
|
<a href="https://github.com/godotc" title="godotc">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/79260851?v=4" width="42;" alt="godotc"/>
|
|
|
|
|
</a>
|
2022-11-17 05:05:23 +00:00
|
|
|
|
<a href="https://github.com/greyhao" title="greyhao">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/107107440?v=4" width="42;" alt="greyhao"/>
|
|
|
|
|
</a>
|
2022-11-14 13:58:57 +00:00
|
|
|
|
<a href="https://github.com/hua03" title="hua03">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/19561959?v=4" width="42;" alt="hua03"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/hweining" title="hweining">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/8973985?v=4" width="42;" alt="hweining"/>
|
|
|
|
|
</a>
|
2022-11-18 07:44:49 +00:00
|
|
|
|
<a href="https://github.com/k983551019" title="k983551019">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/48147837?v=4" width="42;" alt="k983551019"/>
|
|
|
|
|
</a>
|
2022-11-17 05:05:23 +00:00
|
|
|
|
<a href="https://github.com/kdxcxs" title="kdxcxs">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/18746192?v=4" width="42;" alt="kdxcxs"/>
|
|
|
|
|
</a>
|
2022-11-16 04:58:14 +00:00
|
|
|
|
<a href="https://github.com/larry-xue" title="larry">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/48818060?v=4" width="42;" alt="larry"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/liliangrong777" title="liliangrong777">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/58727146?v=4" width="42;" alt="liliangrong777"/>
|
|
|
|
|
</a>
|
2022-11-18 07:36:15 +00:00
|
|
|
|
<a href="https://github.com/lykjjj" title="lykjjj">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/58510058?v=4" width="42;" alt="lykjjj"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/onewesong" title="onewesong">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/17920822?v=4" width="42;" alt="onewesong"/>
|
|
|
|
|
</a>
|
2022-11-16 04:58:14 +00:00
|
|
|
|
<a href="https://github.com/wjjwkwindy" title="wjjwkwindy">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/9508591?v=4" width="42;" alt="wjjwkwindy"/>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/xing133" title="xing133">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/5336490?v=4" width="42;" alt="xing133"/>
|
|
|
|
|
</a>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
<a href="https://github.com/zxx-457" title="zxx-457">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/114141362?v=4" width="42;" alt="zxx-457"/>
|
2022-11-15 05:44:58 +00:00
|
|
|
|
</a>
|
|
|
|
|
<a href="https://github.com/lvzhenbo" title="吕振波">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/32427677?v=4" width="42;" alt="吕振波"/>
|
2022-11-17 03:34:05 +00:00
|
|
|
|
</a>
|
2022-11-21 02:30:32 +00:00
|
|
|
|
<a href="https://github.com/qyl27" title="秋雨落">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/53731501?v=4" width="42;" alt="秋雨落"/>
|
|
|
|
|
</a>
|
2022-11-17 03:34:05 +00:00
|
|
|
|
<a href="https://github.com/lisheng741" title="芦荟柚子茶">
|
|
|
|
|
<img src="https://avatars.githubusercontent.com/u/53617305?v=4" width="42;" alt="芦荟柚子茶"/>
|
2022-11-13 15:33:10 +00:00
|
|
|
|
</a><!--GAMFC-END-->
|
2022-11-13 02:47:29 +08:00
|
|
|
|
|
|
|
|
|
上图贡献者列表,由 [contributors](https://github.com/jaywcjlove/github-action-contributors) 自动生成贡献者图片。
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
MIT © [Kenny Wong](https://github.com/jaywcjlove)
|