zhenhu / markdown (public) (License: Unspecified) (since 2019-03-05) (hash sha1)
A guide / introduce to markdown / markdown 指南 / markdown 语法
List of commits:
Subject Hash Author Date (UTC)
add alternative formats of headings 484067389f2e248d7d9fc2c7e43c21be0c2f70a7 zhenhu 2019-03-08 08:31:33
adjust the size of pic manalone.jpg 0f9edda5479625af6d0465911d98f8381abffc4c zhenhu 2019-03-07 08:54:46
add a pic freesolo.jpg 56fa6844e0db507b405ce7ad029edd32570bf6ee zhenhu 2019-03-06 17:59:32
fix content of images, add content of linking images 811ae2b07732ca1b7b0186ebe30a4ef423f2ea58 zhenhu 2019-03-06 16:32:46
Set theme jekyll-theme-minimal ce103219600c3f83a3d33ae533fb5ba4fd8d7c29 Zhenhu 2019-03-05 12:06:33
init markdown tutorial e10f3ee802232d0a2d3944310414d0ca3c0f9213 zhenhu 2019-03-05 12:01:08
Commit 484067389f2e248d7d9fc2c7e43c21be0c2f70a7 - add alternative formats of headings
Author: zhenhu
Author date (UTC): 2019-03-08 08:31
Committer name: zhenhu
Committer date (UTC): 2019-03-08 08:31
Parent(s): 0f9edda5479625af6d0465911d98f8381abffc4c
Signing key:
Tree: cfd62efce0f80d1a44f666c1c7aac8d5dae8d0d4
File Lines added Lines deleted
README.md 13 1
File README.md changed (mode: 100644) (index 4cbf5f6..e9b8b9d)
... ... Markdown 是一种轻量级标记语言,创于2004年,关键人物:[John G
68 68
69 69 #### 1.1 标题 (Headings) #### 1.1 标题 (Headings)
70 70
71 使用字符井号 ‘#’,空格,然后紧接标题名称来设置标题。支持六个级别的标题,字符 ‘#’ 的数量表示相应级别的标题。
71 使用字符井号 ‘#’,空格,然后紧接标题名称来设置标题。支持六个级别的标题,字符 ‘#’ 的数量表示相应级别的标题。一级标题还可以在标题名称紧接着的下一行使用 N 个符号 ‘=’ 来替代井号,二级标题同样可以用 N 个符号 ‘-’ 来替代井号。
72 72
73 73 示例: 示例:
74 74
 
... ... Markdown 是一种轻量级标记语言,创于2004年,关键人物:[John G
78 78 #### H4 四级标题 #### H4 四级标题
79 79 ##### H5 五级标题 ##### H5 五级标题
80 80 ###### H6 六级标题 ###### H6 六级标题
81 或:
82
83 H1 一级标题
84 =
85 H2 二级标题
86 -
81 87
82 88 渲染效果如下: 渲染效果如下:
83 89
 
... ... Markdown 是一种轻量级标记语言,创于2004年,关键人物:[John G
87 93 #### H4 四级标题 #### H4 四级标题
88 94 ##### H5 五级标题 ##### H5 五级标题
89 95 ###### H6 六级标题 ###### H6 六级标题
96 或:
97
98 H1 一级标题
99 =
100 H2 二级标题
101 -
90 102
91 103 [回到目录](#目录-table-of-contents) [回到目录](#目录-table-of-contents)
92 104
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/zhenhu/markdown

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/zhenhu/markdown

Clone this repository using git:
git clone git://git.rocketgit.com/user/zhenhu/markdown

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main