├── Solution-And-Explanation.txt
├── README.md
└── guide.html
/Solution-And-Explanation.txt:
--------------------------------------------------------------------------------
1 | # Heading 1 '# '
2 | ## Heading 2 '## '
3 | ### Heading 3 '### '
4 | #### Heading 4 '#### '
5 | ##### Heading 5 '##### '
6 | ###### Heading 6 '###### '
7 |
8 |
9 |
10 | *This text is italic*
11 | _This text is italic_
12 |
13 |
14 |
15 | **This text is bold**
16 | __This text is bold__
17 |
18 |
19 |
20 | ~~This text~~ is strikethrough
21 |
22 |
23 |
24 | ---
25 | ___
26 |
27 |
28 |
29 | \ before the actual rule.
30 |
31 |
32 |
33 |
34 | > This is a quote
35 |
36 |
37 |
38 | [Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim)
39 |
40 |
41 |
42 | [Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim "Follow me :)")
43 |
44 |
45 |
46 | * Text 1
47 | * Text 2
48 | * Text 3
49 | * Nasted text 1
50 | * Nasted text 2
51 | * Nasted text 1
52 | * Nasted text 2
53 |
54 |
55 |
56 | 1. Text 1
57 | 2. Text 2
58 | 1. Nasted text 1
59 | 5. Text 3 // it gives the appropriate order
60 |
61 |
62 |
63 |
64 | `
This is paragraph
`
65 |
66 |
67 |
68 | 
69 |
70 |
71 |
72 |
73 | ```java
74 | //in the previous line we are saying the language that we are using.
75 | BufferedReader br = new BufferedReader(New InputStreamReader(System.in));
76 |
77 | String s = br.readLine();
78 |
79 | ```
80 |
81 |
82 | ```javascript
83 | function add(num1, num2){
84 | return num1 + num2;
85 | }
86 |
87 | ```
88 |
89 |
90 |
91 |
92 | | Name | Email |
93 | | ----- | --------------- |
94 | | Test | Test@gmail.com |
95 | | Test2 | Test2@gmail.com |
96 |
97 |
98 |
99 |
100 | * [x] Task 1
101 | * [x] Task 2
102 | * [ ] Task 3
103 |
104 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Heading 1 '# '
2 | ## Heading 2 '## '
3 | ### Heading 3 '### '
4 | #### Heading 4 '#### '
5 | ##### Heading 5 '##### '
6 | ###### Heading 6 '###### '
7 |
8 |
9 |
10 | *This text is italic*
11 | _This text is italic_
12 |
13 |
14 |
15 | **This text is bold**
16 | __This text is bold__
17 |
18 |
19 |
20 | ~~This text~~ is strikethrough
21 |
22 |
23 |
24 | ---
25 | ___
26 |
27 |
28 |
29 | \ before the actual rule.
30 |
31 |
32 |
33 |
34 | > This is a quote
35 |
36 |
37 |
38 | [Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim)
39 |
40 |
41 |
42 | [Gabriel Dimitrievski - GitHub](https://github.com/gabrieldim "Follow me :)")
43 |
44 |
45 |
46 | * Text 1
47 | * Text 2
48 | * Text 3
49 | * Nested text 1
50 | * Nested text 2
51 | * Nested text 1
52 | * Nested text 2
53 |
54 |
55 |
56 | 1. Text 1
57 | 2. Text 2
58 | 1. Nested text 1
59 | 5. Text 3 // it gives the appropriate order
60 |
61 |
62 |
63 |
64 | `This is paragraph
`
65 |
66 |
67 |
68 | 
69 |
70 |
71 |
72 |
73 | ```java
74 | //in the previous line we are saying the language that we are using.
75 | BufferedReader br = new BufferedReader(New InputStreamReader(System.in));
76 |
77 | String s = br.readLine();
78 |
79 | ```
80 |
81 |
82 | ```javascript
83 | function add(num1, num2){
84 | return num1 + num2;
85 | }
86 |
87 | ```
88 |
89 |
90 |
91 |
92 | | Name | Email |
93 | | ----- | --------------- |
94 | | Test | Test@gmail.com |
95 | | Test2 | Test2@gmail.com |
96 |
97 |
98 |
99 |
100 | * [x] Task 1
101 | * [x] Task 2
102 | * [ ] Task 3
103 | * [ ]
104 |
105 |
106 | > Inspired by: [Brad Traversy](https://github.com/bradtraversy)
107 |
--------------------------------------------------------------------------------
/guide.html:
--------------------------------------------------------------------------------
1 | Heading 1 '# '
2 | Heading 2 '## '
3 | Heading 3 '### '
4 | Heading 4 '#### '
5 | Heading 5 '##### '
6 | Heading 6 '###### '
7 |
8 |
9 |
10 |
11 | This text is italic
12 | This text is italic
13 |
14 |
15 |
16 |
17 | This text is bold
18 | This text is bold
19 |
20 |
21 |
22 |
23 |
24 | This text is strikethrough
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | \ before the actual rule.
35 |
36 |
37 |
38 |
39 |
40 | This is a quote
41 |
42 |
43 |
44 |
45 |
46 | Gabriel Dimitrievski - GitHub
47 |
48 |
49 |
50 |
51 | Gabriel Dimitrievski - GitHub
52 |
53 |
54 |
55 |
56 |
57 | - Text 1
58 | - Text 2
59 | - Text 3
60 | - Nasted text 1
61 | - Nasted text 2
62 | - Nasted text 1
63 | - Nasted text 2
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 | - Text 1
75 | - Text 2
76 | - Nasted text 1
77 |
78 |
79 | - Text 3 // it gives the appropriate order
80 |
81 |
82 |
83 |
84 |
85 | <p>This is paragraph</p>
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 | BufferedReader br = new BufferedReader(New InputStreamReader(System.in));
98 |
99 | String s = br.readLine();
100 |
101 |
102 | function add(num1, num2){
103 | return num1 + num2;
104 | }
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 | | Name |
113 | Email |
114 |
115 |
116 |
117 |
118 | | Test |
119 | Test@gmail.com |
120 |
121 |
122 | | Test2 |
123 | Test2@gmail.com |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 | - [x] Task 1
132 | - [x] Task 2
133 | - [ ] Task 3
134 |
--------------------------------------------------------------------------------