The Markdown editor has no built-in way to control spacing between lines. Pressing Enter once does not create a new line — the next sentence continues on the same line. Pressing Enter twice creates a new paragraph, but there is no native way to add extra spacing beyond that. The workaround is to use inline HTML tags, which Document360's Markdown editor renders correctly.
When to use custom spacing
- Extra vertical space between sections — use
<br>to push content further down the page when a single paragraph break is not enough visual separation. - Extra space between words or inline elements — use
to add precise horizontal spacing within a line, such as between two values or around a label. - Creating a blank paragraph — use
<p></p>to insert an empty paragraph that adds vertical rhythm between blocks of content.
These techniques only work in the Markdown editor. In the Advanced WYSIWYG editor, use the spacing and alignment options in the toolbar instead.
Quick reference
| Goal | HTML to use | Notes |
|---|---|---|
| Insert a line break | <br> |
Stack multiple <br> tags for more space |
| Add space between words | |
Add multiple for wider gaps |
| Add a blank paragraph | <p></p> |
Inserts an empty paragraph block |
How to add spacing in Markdown
Adding vertical space with <br>
- Open the desired article in the Markdown editor.
- Paste
<br>at the location where you want the extra space to appear. - To add more space, repeat the tag as many times as needed.
Input:
Line 1
<br>
<br>
Line 2
Output:
Line 1
Line 2
Adding horizontal space with
Use (non-breaking space) to insert extra space between words or inline elements on the same line.
Input:
This sentence has extra spaces between some words.
Output:
This sentence has extra spaces between some words.
Adding a blank paragraph with <p></p>
Use an empty <p></p> tag to insert a blank paragraph block and add vertical space between sections.
Input:
First block of content.
<p></p>
Second block of content.
Output:
First block of content.
Second block of content.Scope and coverage
| Technique | What it controls | Stackable |
|---|---|---|
<br> |
Vertical line break | Yes — add multiple for more space |
|
Horizontal space within a line | Yes — add multiple for wider gaps |
<p></p> |
Blank paragraph block | Yes |
| Press Enter twice | Single paragraph break (standard Markdown) | No |