跳转至

00. 基础教程

1. 基本步骤

考虑到大多数人的情况,暂时介绍一种学习成本较低的贡献方法。

  1. 点击贡献模板中右侧的编辑此页按钮下载模板,或直接复制模板文件,再删去多余字符
  2. 依照模板编写 markdown (markdown 的学习成本极低) 文件
  3. 将文件提交于 ZZU计智学习指南维护组 群中,或联系 作者 并提交文件
  4. 如要提交课程资源文件,同样可以直接联系 作者 提交文件
  5. (可选)在培养方案页,为添加的课程补上超链接

2. 学习 markdown

Markdown 是一种轻量级标记语言,排版语法简洁,让人们更多地关注内容本身而非排版。它使用易读易写的纯文本格式编写文档,可与 HTML 混编,可导出 HTML、PDF 以及本身的 .md 格式的文件。因简洁、高效、易读、易写,Markdown 被大量使用,如 Github、Wikipedia、简书等。

教程:

编辑器下载:

markdown 速查表

基本语法

元素 Markdown 语法
标题(Heading) # H1
## H2
### H3
粗体(Bold) **bold text**
斜体(Italic) *italicized text*
引用块(Blockquote) > blockquote
有序列表(Ordered List) 1. First item
2. Second item
3. Third item
无序列表(Unordered List) - First item
- Second item
- Third item
代码(Code) `code`
分隔线(Horizontal Rule) ---
链接(Link) [title](https://www.example.com)
图片(Image) ![alt text](image.jpg)

扩展语法

这些元素通过添加额外的功能扩展了基本语法。但是,并非所有 Markdown 应用程序都支持这些元素。

元素 Markdown 语法
表格(Table)


代码块(Fenced Code Block) ```
{   
"firstName": "John",
"lastName": "Smith",
"age": 25
}
``
脚注(Footnote) Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
标题编号(Heading ID) ### My Great Heading {#custom-id}
定义列表(Definition List) term : definition
删除线(Strikethrough) ~~The world is flat.~~
任务列表(Task List) - [x] Write the press release
- [ ] Update the website
- [ ] Contact the media