Basic Syntax - Markdown Guide
Basic Syntax - Markdown Guide
Basic Syntax
The Markdown elements outlined in the original design document.
Overview
Nearly all Markdown applications support the basic syntax outlined in the original Markdown design document. There are minor
variations and discrepancies between Markdown processors — those are noted inline wherever possible.
Headings
To create a heading, add number signs (#) in front of a word or phrase. The number of number signs you use should correspond to the
heading level. For example, to create a heading level three (<h3>), use three number signs (e.g., ### My Header).
Heading level 1
## Heading level 2 <h2>Heading level 2</h2>
Heading level 2
### Heading level 3 <h3>Heading level 3</h3>
Heading level 3
Alternate Syntax
Alternatively, on the line below the text, add any number of == characters for heading level 1 or -- characters for heading level 2.
https://www.markdownguide.org/basic-syntax/ 1/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
You should also put blank lines before and after a heading for compatibility.
Try to put a blank line before... Without blank lines, this might not look right.
# Heading
# Heading Don't do this!
Paragraphs
To create paragraphs, use a blank line to separate one or more lines of text.
I really like using Markdown. <p>I really like using Markdown.</p> I really like using Markdown.
Note: If you need to indent paragraphs in the output, see the section on how to indent (tab).
Don't put tabs or spaces in front of your paragraphs. This can result in unexpected formatting problems.
Keep lines left-aligned like this. Don't add tabs or spaces in front of paragraphs.
Line Breaks
To create a line break or new line (<br>), end a line with two or more spaces, and then type return.
https://www.markdownguide.org/basic-syntax/ 2/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
This is the first line. <p>This is the first line.<br> This is the first line.
And this is the second line. And this is the second line.</p> And this is the second line.
For compatibility, use trailing white space or the <br> HTML tag at the end of the line.
There are two other options I don’t recommend using. CommonMark and a few other lightweight markup languages let you type a
backslash (\) at the end of the line, but not all Markdown applications support this, so it isn’t a great option from a compatibility
perspective. And at least a couple lightweight markup languages don’t require anything at the end of the line — just type return and
they’ll create a line break.
First line with two spaces after. First line with a backslash after.\
And the next line. And the next line.
First line with the HTML tag after.<br> First line with nothing after.
And the next line. And the next line.
Emphasis
You can add emphasis by making text bold or italic.
Bold
To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two
asterisks without spaces around the letters.
I just love **bold text**. I just love <strong>bold text</strong>. I just love bold text.
I just love __bold text__. I just love <strong>bold text</strong>. I just love bold text.
Love**is**bold Love__is__bold
Italic
To italicize text, add one asterisk or underscore before and after a word or phrase. To italicize the middle of a word for emphasis, add
one asterisk without spaces around the letters.
https://www.markdownguide.org/basic-syntax/ 3/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Italicized text is the *cat's meow*. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
Italicized text is the _cat's meow_. Italicized text is the <em>cat's meow</em>. Italicized text is the cat’s meow.
A*cat*meow A_cat_meow
This text is ***really important***. This text is <em><strong>really important</strong> This text is really important.
</em>.
This text is ___really important___. This text is <em><strong>really important</strong> This text is really important.
</em>.
This text is __*really important*__. This text is <em><strong>really important</strong> This text is really important.
</em>.
This text is **_really important_**. This text is <em><strong>really important</strong> This text is really important.
</em>.
Note: The order of the em and strong tags might be reversed depending on the Markdown processor you're using.
Blockquotes
To create a blockquote, add a > in front of a paragraph.
> Dorothy followed her through many of the beautiful rooms in her castle.
https://www.markdownguide.org/basic-syntax/ 4/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Dorothy followed her through many of the beautiful rooms in her castle.
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
Dorothy followed her through many of the beautiful rooms in her castle.
The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
Nested Blockquotes
Blockquotes can be nested. Add a >> in front of the paragraph you want to nest.
> Dorothy followed her through many of the beautiful rooms in her castle.
>
>> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
Dorothy followed her through many of the beautiful rooms in her castle.
The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
https://www.markdownguide.org/basic-syntax/ 5/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Try to put a blank line before... Without blank lines, this might not look right.
> This is a blockquote
> This is a blockquote Don't do this!
Lists
You can organize items into ordered and unordered lists.
Ordered Lists
To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list
should start with the number one.
https://www.markdownguide.org/basic-syntax/ 6/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Unordered Lists
To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a
nested list.
https://www.markdownguide.org/basic-syntax/ 7/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Tip: If things don't appear the way you expect, double check that you've indented the elements in the list four spaces or one
tab.
Paragraphs
https://www.markdownguide.org/basic-syntax/ 8/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Blockquotes
> A blockquote would look great below the second list item.
Code Blocks
Code blocks are normally indented four spaces or one tab. When they’re in a list, indent them eight spaces or two tabs.
<html>
<head>
<title>Test</title>
</head>
<html>
<head>
<title>Test</title>
</head>
Images
https://www.markdownguide.org/basic-syntax/ 9/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Lists
You can nest an unordered list in an ordered list, or vice versa.
1. First item
2. Second item
3. Third item
- Indented item
- Indented item
4. Fourth item
1. First item
2. Second item
3. Third item
Indented item
Indented item
4. Fourth item
Code
To denote a word or phrase as code, enclose it in backticks (`).
At the command prompt, type `nano`. At the command prompt, type <code>nano</code>. At the command prompt, type nano.
Escaping Backticks
If the word or phrase you want to denote as code includes one or more backticks, you can escape it by enclosing the word or phrase in
double backticks (``).
``Use `code` in your Markdown <code>Use `code` in your Markdown file. Use `code` in your Markdown
file.`` </code> file.
Code Blocks
To create code blocks, indent every line of the block by at least four spaces or one tab.
<html>
<head>
</head>
</html>
https://www.markdownguide.org/basic-syntax/ 10/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
<html>
<head>
</head>
</html>
Note: To create code blocks without indenting lines, use fenced code blocks.
Horizontal Rules
To create a horizontal rule, use three or more asterisks (***), dashes (---), or underscores (___) on a line by themselves.
***
---
_________________
Try to put a blank line before... Without blank lines, this would be a heading.
---
--- Don't do this!
Links
To create a link, enclose the link text in brackets (e.g., [Duck Duck Go]) and then follow it immediately with the URL in parentheses (e.g.,
(https://duckduckgo.com)).
Note: To link to an element on the same page, see linking to heading IDs. To create a link that opens in a new tab or window,
see the section on link targets.
Adding Titles
You can optionally add a title for a link. This will appear as a tooltip when the user hovers over the link. To add a title, enclose it in
quotation marks after the URL.
My favorite search engine is [Duck Duck Go](https://duckduckgo.com "The best search engine for privacy").
https://www.markdownguide.org/basic-syntax/ 11/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
<https://www.markdownguide.org>
<[email protected]>
https://www.markdownguide.org
[email protected]
Formatting Links
To emphasize links, add asterisks before and after the brackets and parentheses. To denote links as code, add backticks in the brackets.
Reference-style Links
Reference-style links are a special kind of link that make URLs easier to display and read in Markdown. Reference-style links are
constructed in two parts: the part you keep inline with your text and the part you store somewhere else in the file to keep the text easy
to read.
Although not required, you can include a space between the first and second set of brackets. The label in the second set of brackets is
not case sensitive and can include letters, numbers, spaces, or punctuation.
This means the following example formats are roughly equivalent for the first part of the link:
[hobbit-hole][1]
[hobbit-hole] [1]
1. The label, in brackets, followed immediately by a colon and at least one space (e.g., [label]: ).
2. The URL for the link, which you can optionally enclose in angle brackets.
3. The optional title for the link, which you can enclose in double quotes, single quotes, or parentheses.
This means the following example formats are all roughly equivalent for the second part of the link:
[1]: https://en.wikipedia.org/wiki/Hobbit#Lifestyle
[1]: https://en.wikipedia.org/wiki/Hobbit#Lifestyle "Hobbit lifestyles"
[1]: https://en.wikipedia.org/wiki/Hobbit#Lifestyle 'Hobbit lifestyles'
[1]: https://en.wikipedia.org/wiki/Hobbit#Lifestyle (Hobbit lifestyles)
[1]: <https://en.wikipedia.org/wiki/Hobbit#Lifestyle> "Hobbit lifestyles"
https://www.markdownguide.org/basic-syntax/ 12/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
You can place this second part of the link anywhere in your Markdown document. Some people place them immediately after the
paragraph in which they appear while other people place them at the end of the document (like endnotes or footnotes).
In a hole in the ground there lived a hobbit. Not a nasty, dirty, wet hole, filled with the ends
of worms and an oozy smell, nor yet a dry, bare, sandy hole with nothing in it to sit down on or to
eat: it was a [hobbit-hole](https://en.wikipedia.org/wiki/Hobbit#Lifestyle "Hobbit lifestyles"), and that means
comfort.
Though it may point to interesting additional information, the URL as displayed really doesn’t add much to the existing raw text other
than making it harder to read. To fix that, you could format the URL like this instead:
In a hole in the ground there lived a hobbit. Not a nasty, dirty, wet hole, filled with the ends
of worms and an oozy smell, nor yet a dry, bare, sandy hole with nothing in it to sit down on or to
eat: it was a [hobbit-hole][1], and that means comfort.
In a hole in the ground there lived a hobbit. Not a nasty, dirty, wet hole, filled with the ends of worms and an oozy smell, nor yet
a dry, bare, sandy hole with nothing in it to sit down on or to eat: it was a hobbit-hole, and that means comfort.
Parentheses in the middle of a URL can also be problematic. For compatibility, try to URL encode the opening parenthesis (() with %28
and the closing parenthesis ()) with %29. Alternatively, if your Markdown application supports HTML, you could use the a HTML tag.
[a novel](https://en.wikipedia.org/wiki/ [a novel](https://en.wikipedia.org/wiki/
The_Milagro_Beanfield_War_%28novel%29) The_Milagro_Beanfield_War_(novel))
<a href="https://en.wikipedia.org/wiki/
The_Milagro_Beanfield_War_(novel)">a novel</a>
https://www.markdownguide.org/basic-syntax/ 13/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Images
To add an image, 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.
Note: To resize an image, see the section on image size. To add a caption, see the section on image captions.
Linking Images
To add a link to an image, enclose the Markdown for the image in brackets, and then add the link in parentheses.
[]
(https://www.flickr.com/photos/beaurogers/31833779864/in/photolist-Qv3rFw-34mt9F-a9Cmfy-5Ha3Zi-9msKdv-o3hgjr-hWpUte-
4WMsJ1-KUQ8N-deshUb-vssBD-6CQci6-8AFCiD-zsJWT-nNfsgB-dPDwZJ-bn9JGn-5HtSXY-6CUhAL-a4UTXB-ugPum-KUPSo-fBLNm-6CUmpy-
4WMsc9-8a7D3T-83KJev-6CQ2bK-nNusHJ-a78rQH-nw3NvT-7aq2qf-8wwBso-3nNceh-ugSKP-4mh4kh-bbeeqH-a7biME-q3PtTf-brFpgb-cg38zw-
bXMZc-nJPELD-f58Lmo-bXMYG-bz8AAi-bxNtNT-bXMYi-bXMY6-bXMYv)
https://www.markdownguide.org/basic-syntax/ 14/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Escaping Characters
To display a literal character that would otherwise be used to format text in a Markdown document, add a backslash (\) in front of the
character.
Character Name
\ backslash
* asterisk
_ underscore
{} curly braces
[] brackets
() parentheses
https://www.markdownguide.org/basic-syntax/ 15/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Character Name
# pound sign
+ plus sign
. dot
! exclamation mark
HTML
Many Markdown applications allow you to use HTML tags in Markdown-formatted text. This is helpful if you prefer certain HTML tags to
Markdown syntax. For example, some people find it easier to use HTML tags for images. Using HTML is also helpful when you need to
change the attributes of an element, like specifying the color of text or changing the width of an image.
To use HTML, place the tags in the text of your Markdown-formatted file.
Use blank lines to separate block-level HTML elements like <div>, <table>, <pre>, and <p> from the surrounding content. Try not to
indent the tags with tabs or spaces — that can interfere with the formatting.
You can’t use Markdown syntax inside block-level HTML tags. For example, <p>italic and **bold**</p> won’t work.
https://www.markdownguide.org/basic-syntax/ 16/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
https://www.markdownguide.org/basic-syntax/ 17/18
7/22/25, 11:00 AM Basic Syntax | Markdown Guide
Don't stop now! 🚀 Star the GitHub repository and then enter your email address below to receive new Markdown tutorials via
email. No spam!
Stay updated
© 2025. A Matt Cone project. CC BY-SA 4.0. Made with 🌶️ in New Mexico.
https://www.markdownguide.org/basic-syntax/ 18/18