Markdown-Crash-Course
Markdown-Crash-Course copied to clipboard
Markdown Crash Course. Learn Markdown language on a simple way.
Heading 1 '# '
Heading 2 '## '
Heading 3 '### '
Heading 4 '#### '
Heading 5 '##### '
Heading 6 '###### '
This text is italic
This text is italic
This text is bold
This text is bold
~~This text~~ is strikethrough
\ before the actual rule.
This is a quote
- Text 1
- Text 2
- Text 3
- Nested text 1
- Nested text 2
- Nested text 1
- Nested text 2
- Text 1
- Text 2
- Nested text 1
- Text 3 // it gives the appropriate order
<p>This is paragraph</p>
//in the previous line we are saying the language that we are using.
BufferedReader br = new BufferedReader(New InputStreamReader(System.in));
String s = br.readLine();
function add(num1, num2){
return num1 + num2;
}
| Name | |
|---|---|
| Test | [email protected] |
| Test2 | [email protected] |
- [x] Task 1
- [x] Task 2
- [ ] Task 3
- [ ]
Inspired by: Brad Traversy