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)
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 811ae2b07732ca1b7b0186ebe30a4ef423f2ea58 - fix content of images, add content of linking images
Author: zhenhu
Author date (UTC): 2019-03-06 16:32
Committer name: zhenhu
Committer date (UTC): 2019-03-06 16:32
Parent(s): ce103219600c3f83a3d33ae533fb5ba4fd8d7c29
Signing key:
Tree: 912f786d82e35dca30d11765c0449d8dc48920cc
File Lines added Lines deleted
README.md 15 2
File README.md changed (mode: 100644) (index 5ad5cf6..4cbf5f6)
... ... Markdown 是一种轻量级标记语言,创于2004年,关键人物:[John G
42 42 9. [图片 (Images)](#19-图片-images) 9. [图片 (Images)](#19-图片-images)
43 43 - 行内样式图片 (Inline-style Images) - 行内样式图片 (Inline-style Images)
44 44 - 引用样式图片 (Reference-style Images) - 引用样式图片 (Reference-style Images)
45 - 图片链接 (Linking Images)
45 46 10. [代码 (Codes)](#110-代码-codes) 10. [代码 (Codes)](#110-代码-codes)
46 47 - 行内代码 (Inline-style Codes) - 行内代码 (Inline-style Codes)
47 48 - 代码块 (Code Blocks) - 代码块 (Code Blocks)
 
... ... b. **引用样式图片** (Reference-style Images)
425 426
426 427 [被引用目标] </图片地址>/ "/'/(图片title)/'/" [被引用目标] </图片地址>/ "/'/(图片title)/'/"
427 428
428 **注**: *引用样式图片与引用样式链接类似,就多一个符号 ‘!’。*
429 **注**: *引用样式图片与引用样式链接类似,引用块前有个符号 ‘!’,被引用块多了个符号‘"’。*
429 430
430 431 示例: 示例:
431 432
 
... ... b. **引用样式图片** (Reference-style Images)
435 436
436 437 ![beautiful sky][beau-sky] ![beautiful sky][beau-sky]
437 438
438 [beau-sky]:./images/manalone.jpg (璀璨星空")
439 [beau-sky]:./images/manalone.jpg "璀璨星空"
439 440
440 441 渲染效果如下:(三种方式的效果相同) 渲染效果如下:(三种方式的效果相同)
441 442
 
... ... b. **引用样式图片** (Reference-style Images)
443 444
444 445 [beau-skyone]: ./images/manalone.jpg "璀璨星空" [beau-skyone]: ./images/manalone.jpg "璀璨星空"
445 446
447 c. **图片链接** (Linking Images)
448
449 [![图片alt](图片地址 "图片title")](图片链接地址 "链接title")
450
451 **注:** *链接语法嵌套图片语法。*
452
453 [![勇敢者的游戏](images/freesolo.jpg "勇敢者的游戏")](https://www.nationalgeographic.com/films/free-solo/)
454
455 渲染效果如下:
456
457 [![勇敢者的游戏](images/freesolo.jpg "勇敢者的游戏")](https://www.nationalgeographic.com/films/free-solo/)
458
446 459 [回到目录](#目录-table-of-contents) [回到目录](#目录-table-of-contents)
447 460
448 461 --- ---
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