forked from gabrieldim/Markdown-Crash-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguide.html
134 lines (116 loc) · 2.94 KB
/
guide.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<h1 id="heading-1-">Heading 1 '# '</h1>
<h2 id="heading-2-">Heading 2 '## '</h2>
<h3 id="heading-3-">Heading 3 '### '</h3>
<h4 id="heading-4-">Heading 4 '#### '</h4>
<h5 id="heading-5-">Heading 5 '##### '</h5>
<h6 id="heading-6-">Heading 6 '###### '</h6>
<p><br></p>
<!-- Italics -->
<p><em>This text is italic</em> <br>
<em>This text is italic</em>
<br>
</p>
<!-- Strong -->
<p><strong>This text is bold</strong> <br>
<strong>This text is bold</strong>
<br>
</p>
<!-- Strikethrough -->
<p><del>This text</del> is strikethrough
<br>
</p>
<h2 id="-horizontal-role-">
<!-- Horizontal Role -->
</h2>
<hr>
<p><br> </p>
<!-- Escape char -->
<p>\ before the actual rule.
<br>
</p>
<!-- Blackquote -->
<blockquote>
<p>This is a quote
<br>
</p>
</blockquote>
<!-- Links -->
<p><a href="https://github.com/gabrieldim">Gabriel Dimitrievski - GitHub</a>
<br>
</p>
<!-- Links cover text-->
<p><a href="https://github.com/gabrieldim" title="Follow me :)">Gabriel Dimitrievski - GitHub</a>
<br>
</p>
<!-- Unordered List -->
<ul>
<li>Text 1</li>
<li>Text 2</li>
<li>Text 3<ul>
<li>Nasted text 1</li>
<li>Nasted text 2<ul>
<li>Nasted text 1</li>
<li>Nasted text 2
<br>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- Ordered List -->
<ol>
<li>Text 1</li>
<li>Text 2<ol>
<li>Nasted text 1</li>
</ol>
</li>
<li>Text 3 // it gives the appropriate order
<br>
</li>
</ol>
<!-- InLine Code Block -->
<p><code><p>This is paragraph</p></code>
<br>
</p>
<!-- Images -->
<p><img src="https://markdown-here.com/img/icon256.png" alt="Markdown Logo" title="Markdown Logo">
<br>
</p>
<!-- Code Blocks -->
<pre><code class="lang-java"><span class="hljs-comment">//in the previous line we are saying the language that we are using.</span>
BufferedReader br = <span class="hljs-keyword">new</span> BufferedReader(<span class="hljs-keyword">New</span> InputStreamReader(<span class="hljs-keyword">System</span>.in));
<span class="hljs-keyword">String</span> s = br.readLine();
</code></pre>
<p><br> </p>
<pre><code class="lang-javascript"><span class="hljs-keyword">function</span> <span class="hljs-title">add</span>(num1, num2){
<span class="hljs-keyword">return</span> <span class="hljs-type">num1</span> + num2;
}
</code></pre>
<p><br> </p>
<!-- Tables -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Test</td>
<td>Test@gmail.com</td>
</tr>
<tr>
<td>Test2</td>
<td>Test2@gmail.com</td>
</tr>
</tbody>
</table>
<p><br> </p>
<!-- Task Lists -->
<ul>
<li>[x] Task 1</li>
<li>[x] Task 2</li>
<li>[ ] Task 3</li>
</ul>