Markdown basic syntax.
To create a heading, add number signs (#) in front of a word or phrase.
# heading 1## heading 2## heading 3Try to put a blank line before and after a heading.
Use a blank line to separate one or more lines.
I really like using Markdown.Unless the paragraph is in a list, don't put tabs or spaces in front of your paragraphs.
You can add emphasis by making text bold or italic.
We love **bold text**.We love **bold text**.We love _italic text_.We love _italic text_.We love **_bold and italic text_**.We love **_bold and italic text_**.To create a blockquote, add a > in front of a paragraph.
> Dorothy followed her through many of the beautiful rooms in her castle.Add line items with numbers followed by periods, you can indent them too. The numbers don’t have to be in numerical order, but the list should start with the number one.
1. First item
1. Second item
1. Third itemAdd dashes (-), asterisks (*), or plus signs (+) in front of line items. You can indent one or more items too.
- First item
* Second item
- Third itemTo denote a word or phrase as code, enclose it in backticks (`).
This is `a bit of code!`Use three or more asterisks (***), dashes (---), or underscores (___).
---
---
---To create a link, enclose the link text in brackets and then follow it immediately with the URL in parentheses.
My favorite search engine is [Duck Duck Go](https://duckduckgo.com).Output:
My favorite search engine is Duck Duck Go
You can optionally add a title for a link, this will appear when the user hovers over the link.
My favorite search engine [Duck Duck Go](https://duckduckgo.com "The best search engine for privacy").Output:
My favorite search engine Duck Duck Go.
To quickly turn a URL or email address into a link, enclose it in angle brackets.
<https://www.markdownguide.org>
<fake@example.com>Output:
Add an exclamation mark (!), followed by alt text in brackets, and the path or URL to the image asset in parentheses. You can optionally add a title in quotation marks after the path or URL.
