File tree Expand file tree Collapse file tree 2 files changed +90
-3
lines changed Expand file tree Collapse file tree 2 files changed +90
-3
lines changed Original file line number Diff line number Diff line change 1
- ## Markdown Example
1
+ # Markdown Example
2
2
3
- - headings-
4
- - ordered lists
3
+ - [ Ordered lists] ( #unordered-lists )
5
4
- unordered lists
6
5
- text formatting
7
6
- code
8
7
- tables
9
8
- links
9
+ - blockquotes
10
10
- images
11
11
- autolists
12
12
- lists
13
+
14
+ ## Ordered Lists
15
+
16
+ 1 . foo
17
+ 1 . bar
18
+ 3 ) baz
19
+ 3 ) baz
20
+ 3 ) baz
21
+
22
+ ## Unordered Lists
23
+
24
+ We can create unordered lists in markdown using hyphens.
25
+
26
+ - foo
27
+ - bar
28
+ + baz
29
+ + baz
30
+
31
+ ## Text Formatting
32
+
33
+ * Italics*
34
+
35
+ ** Bold**
36
+
37
+ __ Bold__
38
+
39
+ ~~ strikethrough~~
40
+
41
+ ## Code
42
+
43
+ ### Inline Code
44
+
45
+ You can print to the terminal using the ` puts "hello world" ` command.
46
+
47
+ ### Multi line Code
48
+
49
+ #### Without Highlighting
50
+ ```
51
+ def hello_world
52
+ puts "hello world"
53
+ end
54
+ ```
55
+
56
+ #### With Highlighting
57
+ ``` rb
58
+ def hello_world
59
+ puts " hello world"
60
+ end
61
+ ```
62
+
63
+ ## Tables
64
+
65
+ | foo | bar |
66
+ | --- | --- |
67
+ | baz | bim |
68
+
69
+ | abc | defghi |
70
+ :-: ------------:
71
+ bar | baz
72
+
73
+ | abc | def |
74
+ | --- | --- |
75
+ | bar |
76
+ | bar | baz | boo |
77
+
78
+ | abc | def |
79
+ | --- | --- |
80
+
81
+ ## Blockquote
82
+
83
+ > "The cloud is amazing"
84
+
85
+ > # Foo
86
+ > bar
87
+ > baz
88
+
89
+ ## Links
90
+
91
+ [ GitHub Website] ( https://github.com )
92
+
93
+ [ Secret Page] ( secret.md )
94
+
95
+ ## Tasklist
96
+
97
+ - [x] Item 1
98
+ - [x] Item 2
Original file line number Diff line number Diff line change
1
+ ** Secret Page **
You can’t perform that action at this time.
0 commit comments