MARKDOWN Syntax
In this blog, I will show a summary of all the Syntax to write Markdown.
Markdown by Example:
Heading:
# H1
## H2
### H3
Bold:
**bold text**
Italic
*italicized text*
Blockquote
> blockquotte
Ordered list:
1. 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
Table:
| Syntax | Description |
| ----------------- | ----------------|
| Header | Title |
| Paragraph | | Text |
Fenced Code Block
```
{
"firstNmae": "John",
"lastName": "Smith",
"age": 25
}
```
Footnote
Here's a sentence with a footnote. [^1]
[^1]: This is a footnote.
Heading ID
#### My Great Heading {#custom-id}
Definition List
term
: definition
Strikethrough
~~The world is flat.~~
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Comments
Post a Comment