Markdown Quick Tutorial

Source File For this tutorial: Click Here

Example 1:

Markdown Code:

1
2
3
4
5
6
_Italic_       *Italic* 
__Bold__ **Bold**
<span style="color:blue">Blue</span>
_<span style="color:red">Red and Italic</span>_
___<span style="color:red">Red and Italic and Bold</span>___
**_<span style="color:red">Red and Italic and Bold</span>_**

Output:

Italic Italic
Bold Bold
Blue
Red and Italic
Red and Italic and Bold
Red and Italic and Bold


Example 2:

Markdown Code:

1
2
3
4
5
6
7
8
9

~~Strickout~~
<u>Underline</u>

创建脚注格式类似这样 [^Footnote]。

[^Footnote]: Here is footnote

output "*" \* \_

Output

Strickout
Underline

创建脚注格式类似这样 [^Footnote]。

[^Footnote]: Here is footnote

output ““ \ _

Example 3

Markdown Code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

__Here is check list__
- [ ] my
- [ ] check
- [x] list

__Here is Emoji__
:blush:
:smile:
:angry:
:cry:
:joy:

>Block
>1. Block 1
>2. Blokc 2

Output

Here is check list

  • my
  • check
  • list

Here is Emoji
:blush:
:smile:
:angry:
:cry:
:joy:

Block

  1. Block 1
  2. Blokc 2

Example 4

Here is code function()

1
Code Block
1
int text= C Code Block
Col1 Col2 Col3
a b c
左对齐(left) 居中(center) 右对齐(right) 默认左对齐(default)
a b c d
  • list 1
  • list 2
  • list 3
  • list 1
  • list 2
  • list 3

Example 5

Markdown Code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

<image src="https://gst-online.com/wp-content/uploads/2018/07/16679084-abstract-word-cloud-for-representation-with-related-tags-and-terms.jpg">

[Here is a link](https://google.com/)
[1]: http://static.runoob.com/images/runoob-logo.png
<h1>Embeded HTML</h1>
<h2>Hearder</h2>
<h3>Hearder</h3>

使用 <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd> 重启电脑

## math formula: Need to be loaded on browser
$$
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \\
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \\
\end{vmatrix}
${$tep1}{\style{visibility:hidden}{(x+1)(x+1)}}
$$

Output

Here is a link
[1]: http://static.runoob.com/images/runoob-logo.png

Embeded HTML

Hearder

Hearder

使用 Ctrl+Alt+Del 重启电脑

math formula: Need to be loaded on browser

$$
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}
${$tep1}{\style{visibility:hidden}{(x+1)(x+1)}}
$$

Hello

Comments