> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Adding New Line in Markdown
- URL: https://itsfoss.com/markdown-new-line/
- Published: 2023-02-08T10:18:33.000Z
- Updated: 2025-08-04T13:38:09.000Z
- Description: Learn how to add new paragraphs and line breaks using Markdown syntax.
- Author: Abhishek Prakash
- Tags: Markdown

How do you add new line? You press the enter key.

That works in standard text editors. 

While many Markdown text and web editors allow the enter (return) key for entering new lines, the actual Markdown syntax doesn't support it.

## How to add a new line in Markdown?

To add a new line in Markdown, the proper Markdown syntax is to **end a line with two spaces followed by the enter key**. This will introduce a line break but not paragraph change. To change a paragraph, press the enter key twice.

It may sound strange but Markdown does not support “hard-wrapped” or “fixed-line-length” paragraphs. That is, hitting the `<Enter>` key once will NOT force text to a new line. It may appear so in the editing window, but the rendered version won’t show it.

Don't believe me? Take a look at this screenshot:

![Adding line break in Markdown syntax](https://itsfoss.com/content/images/2023/02/markdown-line-break.png)

New line example in Markdown (click to enlarge)

It takes some time to get used to this "two space and an enter" for adding new lines but that's what Markdown is all about.

## How to add a paragraph change in Markdown?

Introducing a pragraph change in Markdown is easier. You just have to **press the Enter key twice**. This is less confusing than the normal line break.

![Add a paragraph in Markdown](https://itsfoss.com/content/images/2023/02/markdown-paragraph-break.png)

Paragraph change example in Markdown (click to enlarge)

## It's all about the syntax

To summarize what you just learned:

| Action                          | Result                 |
| ------------------------------- | ---------------------- |
| Two space followed by Enter key | Adds a new line        |
| Enter key twice                 | Adds a pragraph change |

Markdown is awesome for web writing. It is also good for personal note-taking once you get the hang of it.

I have created this cheat sheet to help you get familiar with it. Feel free to download it.

[Download Markdown Syntax Cheatsheet](https://itsfoss.com/content/files/2023/01/Markdown-Cheat-Sheet.pdf)

If you want a detailed [explanation of Markdown syntax](https://itsfoss.com/markdown-guide/), we have a guide for that as well.

[Basic Markdown Syntax Explained \[With Free Cheat Sheet\]Learning markdown could help you a lot with writing for web. Here’s a complete beginner’s guide to Markdown syntax with downloadable cheat sheet.![](https://itsfoss.com/content/images/icon/android-chrome-192x192-586.png)It's FOSSBill Dyer![](https://itsfoss.com/content/images/thumbnail/markdown-2.png)](https://itsfoss.com/markdown-guide/)

I hope you find this helpful in adding line breaks in Markdown. If you have any questions or suggestions, please feel free to leave a comment.