-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
fix(index.js):修复找不到词条的文字显示错误 #490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4472e76
fix(curl,time):格式化内容,并参考 #359 #352 修改文档
conglinyizhi ca1daff
fix(index.js):修复找不到词条的文字显示错误
conglinyizhi fcf4b86
docs:对于未来的贡献者提出了明确的要求和提示
conglinyizhi 82a1ba5
Merge branch 'jaywcjlove:master' into master
conglinyizhi 39d9119
docs:对于未来的贡献者提出了明确的要求和提示
conglinyizhi 1417f8d
Merge branch 'master' of github.com:conglinyizhi/linux-command
conglinyizhi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| # 贡献者约定 | ||
|
|
||
| 感谢您对本项目提交贡献,为了便于维护者管理,请各位维护人员遵循以下约定 | ||
|
|
||
| ## 如果您希望提交一个命令 | ||
|
|
||
| 命令的存放位置在 `./command/` 文件夹中 | ||
|
|
||
| 1. 在这里创建一个 `[CommandName].md` 文件,比如 `pacman.md` | ||
| 2. 打开文件,键入指令在终端中执行的命令 | ||
| 3. 第二行输入三个等号 | ||
| 4. 创建二级标题“补充说明”,并且在这个标题下面创建至少下面几个三级标题 | ||
| - 语法 | ||
| - 选项 | ||
| - 参数 | ||
|
|
||
| 按照预期,文档应该是这样的 | ||
|
|
||
| ```markdown | ||
| CommandName | ||
| === | ||
| 作为代码规范文档进行展示 | ||
|
|
||
| ## 补充说明 | ||
|
|
||
| **CommandName命令** 是用于演示的文档 | ||
|
|
||
| ### 语法 | ||
|
|
||
| (具体编写文档时,请使用 shell 代码块包裹以下内容) | ||
|
|
||
| CommandName <-abcdABCD> <必选参数> [可选参数] | ||
|
|
||
| ### 选项 | ||
|
|
||
| (具体编写文档时,请使用 shell 代码块包裹以下内容) | ||
|
|
||
| -a xxxxx | ||
| -b xxxxx | ||
| ... | ||
| -C xxxxx | ||
| -D xxxxx | ||
|
|
||
| ### 参数 | ||
|
|
||
| (具体编写文档时,请使用 shell 代码块包裹以下内容) | ||
|
|
||
| 可选参数:一般情况下可以不给出 | ||
|
|
||
| ``` | ||
|
|
||
| ## 如果您希望维护前端页面 | ||
|
|
||
| - 请确保您的代码可以完整的运行在最新的 Chromium 和 Safari 浏览器 (#489) | ||
|
|
||
| ## 对于提交信息的其他规范 | ||
|
|
||
| - 约定式提交 <https://www.conventionalcommits.org/zh-hans/v1.0.0/> | ||
| - 中文文案排版指北 <https://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/README.zh-Hans.md> | ||
| - 扉页 — Google 开源项目风格指南 <https://zh-google-styleguide.readthedocs.io/en/latest/google-shell-styleguide/> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
贡献说明默认放在
根目录命名为CONTRIBUTING.mdThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@conglinyizhi