Commit d1617d0 1 parent 6f0e463 commit d1617d0 Copy full SHA for d1617d0
File tree 1 file changed +123
-0
lines changed
1 file changed +123
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ title : " Test"
3
+ date : 2006-01-02T15:04:05+00:00
4
+ slug : " test"
5
+ tags : []
6
+ ---
7
+
8
+ ## Heading 2
9
+
10
+ ### Heading 3
11
+
12
+ #### Heading 4
13
+
14
+ ##### Heading 5
15
+
16
+ ###### Heading 6
17
+
18
+ This is a paragraph of text.
19
+
20
+ ## Emphasis
21
+
22
+ _ Italic text_
23
+ _ Emphasized text_
24
+ ** Bold text**
25
+ ** Strong text**
26
+ ** _ Bold italic text_ **
27
+ ** _ Strong emphasized text_ **
28
+
29
+ ## Lists
30
+
31
+ ### Ordered List
32
+
33
+ 1 . First item
34
+ 2 . Second item
35
+ 3 . Third item
36
+
37
+ ### Unordered List
38
+
39
+ - First item
40
+ - Second item
41
+ - Third item
42
+
43
+ ### Nested List
44
+
45
+ 1 . First item
46
+ - Subitem 1
47
+ - Subitem 2
48
+ 2 . Second item
49
+ - Subitem 1
50
+ - Subitem 2
51
+
52
+ ## Links
53
+
54
+ [ Inline link] ( #links )
55
+ [ Reference link] [ 1 ]
56
+
57
+ [ 1 ] : ./#links
58
+
59
+ ## Images
60
+
61
+ ![ Inline image] ( . )
62
+ ![ Reference image] [ 2 ]
63
+
64
+ [ 2 ] : ./
65
+
66
+ ## Code Blocks
67
+
68
+ ` print("hello, world") `
69
+
70
+ ### Fenced Code Block
71
+
72
+ ``` python
73
+ print (" Hello, World!" )
74
+ ```
75
+
76
+ ## Tables
77
+
78
+ | Column 1 | Column 2 | Column 3 |
79
+ | -------- | -------- | -------- |
80
+ | Cell 1 | Cell 2 | Cell 3 |
81
+ | | | |
82
+ | Cell 4 | Cell 5 | Cell 6 |
83
+
84
+ ## Blockquotes
85
+
86
+ > This is a blockquote.
87
+ > It can span multiple lines.
88
+
89
+ ## Horizontal Rule
90
+
91
+ ---
92
+
93
+ ## Footnotes
94
+
95
+ This is a footnote.[ ^ 1 ]
96
+
97
+ [ ^ 1 ] : This is the footnote text.
98
+
99
+ ## Definition Lists
100
+
101
+ ; Term 1
102
+ : Definition 1
103
+
104
+ ; Term 2
105
+ : Definition 2
106
+
107
+ ## Abbreviations
108
+
109
+ _ [ HTML] : HyperText Markup Language
110
+ _ [ CSS] : Cascading Style Sheets
111
+
112
+ ## Strikethrough
113
+
114
+ ~~ Strikethrough text~~
115
+
116
+ ## Superscript and Subscript
117
+
118
+ 2^10^
119
+ H~ 2~ O
120
+
121
+ ## Emoji
122
+
123
+ 😊 👍
You can’t perform that action at this time.
0 commit comments