Skip to content

Instantly share code, notes, and snippets.

@shettykaran21
Last active August 23, 2020 07:25
Show Gist options
  • Save shettykaran21/5422c023abe044ab8a0deb149a9cf26d to your computer and use it in GitHub Desktop.
Save shettykaran21/5422c023abe044ab8a0deb149a9cf26d to your computer and use it in GitHub Desktop.
Markdown Cheat Sheet

Markdown Cheat Sheet

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



This is a quote

Karan Shetty

Karan Shetty

  • Item 1
  • Item 2
  • Item 3
    • Nested Item 1
    • Nested Item 2
  1. Item 1
  2. Item 2
  3. Item 3

<p>This is a paragraph</p>

Markdown Logo

  npm install

  npm start
  function add(num1, num2) {
    return num1 + num2;
  }
  def add(num1, num2):
    return num1 + num2
Name Email
John Doe john@gmail.com
Jane Doe jane@gmail.com
  • Task 1
  • Task 2
  • Task 3
# Markdown Cheat Sheet
<!-- 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 bold
__This text__ is bold
<!-- Strikethrough -->
~~This text~~ is strikethrough
<!-- Horizontal Rule -->
---
___
<!-- Blockquote -->
> This is a quote
<!-- Links -->
[Karan Shetty](http://knowledgeresume.netlify.app)
[Karan Shetty](http://knowledgeresume.netlify.app "Karan Shetty")
<!-- UL -->
* Item 1
* Item 2
* Item 3
* Nested Item 1
* Nested Item 2
<!-- OL -->
1. Item 1
1. Item 2
1. Item 3
<!-- Inline Code Block -->
`<p>This is a paragraph</p>`
<!-- Images -->
![Markdown Logo](https://markdown-here.com/img/icon256.png)
<!-- Github Markdown -->
<!-- Code Blocks -->
```bash
npm install
npm start
```
```javascript
function add(num1, num2) {
return num1 + num2;
}
```
```python
def add(num1, num2):
return num1 + num2
```
<!-- Tables -->
| Name | Email |
| -------- | -------------- |
| John Doe | john@gmail.com |
| Jane Doe | jane@gmail.com |
<!-- Task List -->
* [x] Task 1
* [ ] Task 2
* [ ] Task 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment