-
<hello every one>
-
- itshows nothing
-
code :
- This is normal text.
-
Output :
- This is normal text.
- To draw a hortizontal rule, use 3 hyphens in new line (---).
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
-
Output :
-
Italics :
- Italic Text should be wrapped with single underscores
-
Bold Text :
- Bold Text should be wrapped with double asterisks(**)
-
Strike-Through Text :
- Strike-Through Text should be wrapped with double tildes(~~)
-
Block-Quotes :
- A Block-Quote should start with a greater than sign (>)
-
Unordered Lists :
- Unordered lists can be formed using asterisks(*).
* Item 1 * Item 2 * Item 3 * Nested Item 1 * Nested Item 2
- Unordered lists can be formed using asterisks(*).
-
Ordered Lists :
-
Ordered lists can be formed using numbers.
- Item 1
- Item 2
- Item 3
- Nested Item 1
- Nested Item 2
-
-
Inline Code :
- For inline code, we wrap the code in back-ticks (``)
-
Code-Blocks :
-
We wrap the code-blocks with three back-ticks(```).
-
By default, these are NOT syntax highlighted.To get syntax-highlighting, we have to specify the name of the language after the first 3 back-ticks.
-
- code :
'''java
class MainClass {
public static void main(String args[])
{
System.out.println("Hello, World!");
}
}
'''
- output :
class MainClass {
public static void main(String args[]) {
System.out.println("Hello, World!");
}
}
- Diff :
- you can have some fancy stuff.
- code :
-
'''diff + add it - delete it '''
-
- output :
-
+ add it - delete it
-
- Syntax for image :
![display_name](path "alternate_text")
-
Syntax for links :
[display_name](path "alternate_text")
These are basic stuff for most of the usage and I will update the sheet when i find some complicated stuff with more features...
Happy cheating
:)