Skip to content

Instantly share code, notes, and snippets.

@hasanm95
Created December 5, 2019 17:34
Show Gist options
  • Save hasanm95/d8a5ee889fa729e7efd024c1ed1c32c7 to your computer and use it in GitHub Desktop.
Save hasanm95/d8a5ee889fa729e7efd024c1ed1c32c7 to your computer and use it in GitHub Desktop.
<!-- 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 -->
![Logo](https://via.placeholder.com/150)
<!-- 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