reading-notes

Learning Markdown

Markdown

Markdown is a lightweight markup language used to add formatting to plain-text documents and has become one of the most widely used markup languages.
Markdown uses simple syntax that remains readable even in its plain-text form.


Why Use Markdown?


Headings in Markdown

To create a heading, add number signs (#) before your text.

Largest heading:

Smallest heading:


Emphasis (Bold & Italics)

For maximum compatibility, especially inside words, use asterisks, one * for italic and two ** for bold:

*italic text*

**bold text**


Use bracketed text followed by the URL in parentheses.

Example:
[Duck Duck Go](https://duckduckgo.com)

You can add an optional title:
[Duck Duck Go](https://duckduckgo.com "Search Engine")


Unordered Lists

You can use any of the following symbols:

Best practice: Pick one and use it consistently.