Markdown notes
author: Paul Kim
categories: markdown
tags: markdown
markdown notes
Comments
Note: Insert a blank line before this type of comment.
[//]: # (this is a comment. remember to insert a blank line before this comment.)
not a comment.
[//]: # (this is another comment.)
[//]: # (more comments.)
not a comment.
Bold
**bold** __again__
bold again
Italic
*italic* _again_
italic again
Bold and Italic
***bolditalic*** ___again___ __*more*__ **_also_**
bolditalic again more also
Strikethrough
~~The world is flat.~~ We now know that the world is round.
The world is flat. We now know that the world is round.
Blockquotes
**single paragraph blockquote**
> Hello there
**multi-paragraph blockquotes**
> Roses are red
>
> Violets are blue
**nested blockquotes**
> Roses are red
>
>> Violets are blue
**blockquotes with other elements**
> #### The quarterly results look great
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.
single paragraph blockquote
Hello there
multi-paragraph blockquotes
Roses are red
Violets are blue
nested blockquotes
Roses are red
Violets are blue
blockquotes with other elements
The quarterly results look great
- Revenue was off the chart.
- Profits were higher than ever.
Everything is going according to plan.
Ordered Lists
single
1. First item
1. Second item
1. Third item
1. Fourth item
nested
1. First item
1. Second item
1. Third item
1. Indented item
1. Indented item
1. Fourth item
single
- First item
- Second item
- Third item
- Fourth item
nested
- First item
- Second item
-
Third item
- Indented item
- Indented item
- Fourth item
Unordered Lists
single
- First item
- Second item
- Third item
- Fourth item
nested
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
single
- First item
- Second item
- Third item
- Fourth item
nested
- First item
- Second item
-
Third item
- Indented item
- Indented item
- Fourth item
Definition Lists
First Term
: This is the definition of the first term.
Second Term
: This is one definition of the second term.
: This is another definition of the second term.
First Term : This is the definition of the first term.
Second Term : This is one definition of the second term. : This is another definition of the second term.
Paragraphs in List
- This is the first list item.
- Here's the second list item.
I need to add another paragraph below the second list item.
- And here's the third list item.
- This is the first list item.
-
Here's the second list item.
I need to add another paragraph below the second list item.
- And here's the third list item.
Blockquotes in List
- This is the first list item.
- Here's the second list item.
> A blockquote would look great below the second list item.
- And here's the third list item.
- This is the first list item.
-
Here's the second list item.
A blockquote would look great below the second list item.
- And here's the third list item.
Code Blocks in List
1. Open the file.
1. Find the following code block on line 21:
Test
1. Update the title to match the name of your website.
- Open the file.
-
Find the following code block on line 21:
<html> <head> <title>Test</title> </head>
- Update the title to match the name of your website.
Images in List
1. Open the file containing the Linux mascot.
2. Marvel at its beauty.

3. Close the file.
Links
[Duck Duck Go](https://duckduckgo.com)
Links with Titles
[Duck Duck Go](https://duckduckgo.com "The best search engine for privacy")
Reference-style Links
Just [Google][] it.
[click me][Google]
[Google]: https://www.google.com/
[Google]: https://www.google.com/ "Google"
[Google]: https://www.google.com/ 'Google'
[Google]: https://www.google.com/ (Google)
[Google]:
[Google]: "Google"
[Google]: 'Google'
[Google]: (Google)
URLs and Email Addresses
To quickly turn a URL or email address into a link, enclose it in angle brackets.
Heading IDs
### My Great Heading {#custom-id}
My Great Heading
Block Attributes
###### Goodbye {#bye}
Goodbye {#bye}
Goodbye
Tables
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here's this |
Paragraph | Text | And more |
Task Lists
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
- Write the press release
- Update the website
- Contact the media