Created
December 5, 2019 17:34
-
-
Save hasanm95/d8a5ee889fa729e7efd024c1ed1c32c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Headings --> | |
# Heading 1 | |
## Heading 2 | |
### Heading 3 | |
#### Heading 4 | |
##### Heading 5 | |
###### Heading 6 | |
<!-- Italics --> | |
*This Text* is italic | |
_This Text_ is Italic | |
<!-- Strong --> | |
**This Text** is italic | |
__This Text__ is italic | |
<!-- Strikethrough --> | |
~~This text~~ is strikethrough | |
<!-- Horizontal Rule --> | |
--- | |
___ | |
<!-- Blockqoute --> | |
>This is Qoute | |
<!-- Links --> | |
[themeforest](https://themeforest.net) | |
<!-- UL --> | |
* Item 1 | |
* Item 2 | |
* Item 3 | |
* Nested 1 | |
* nested 2 | |
* Item 4 | |
<!-- OL --> | |
1. Item 1 | |
2. Item 2 | |
3. item 3 | |
1. item 1 | |
<!-- Inline Code Block --> | |
`<p> This is paragraph </p>` | |
<!-- Images --> | |
 | |
<!-- Github Markdown --> | |
<!-- Code Blocks --> | |
```bash | |
npm install | |
npm run | |
``` | |
<!-- Javascript --> | |
```javascript | |
console.log(12) | |
``` | |
<!-- Tables --> | |
| Name | Email | | |
| -------- | -------------- | | |
| John Doe | [email protected] | | |
| Jane Doe | [email protected] | | |
<!-- Task List --> | |
* [x] task 1 | |
* [ ] task 2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment