Home

Blog

markdown cheat sheet pdf

Markdown Cheat Sheet pdf

post-thumb

What is markdown 

Markdown is the markup language that allows you to write plain text to convert html. Markdown language was created by John Gruber and Aaron Swartz in 2004. Markdown is super easy to use. 

Markdown syntax 

Markdown is the easiest way to style text on the web. You control the display of the document; formaing words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like ## or  *. Download the markdown cheat sheet pdf to see all of the syntax.

ElementMarkdown Syntax
Heading# H1
## H2
### H3
Bold**bold text**
Italic*italicized text*
Blockquote> blockquote
Ordered List1. First item
2. Second item
3. Third item
Unordered List- First item
- Second item
- Third item
Code`code`
Horizontal Rule---
Link[title](https://www.example.com)
Image![alt text](image.jpg)

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

ElementMarkdown Syntax
Table| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Fenced Code Block```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```
FootnoteHere's a sentence with a footnote. [^1]

[^1]: This is the footnote.
Heading ID### My Great Heading {#custom-id}
Definition Listterm
: definition
Strikethrough~~The world is flat.~~
Task List- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

Markdown cheat sheet pdf

product_image