Basic Syntax / Paragraphs
Paragraphs
Paragraphs are the most basic content unit in Markdown. Learn how to create paragraphs and handle line breaks.
Creating Paragraphs
In Markdown, a paragraph consists of one or more consecutive lines of text, separated by blank lines. To create a new paragraph, simply leave a blank line after the current paragraph.
This is the first paragraph.
This is the second paragraph.
This is the third paragraph. Line Break Rules
Line breaks in Markdown require special attention:
- Add two spaces at the end of a line, then press Enter, to create a line break
- Use the
<br>HTML tag to create a line break - Pressing Enter directly won't create a line break in most Markdown processors
This is the first line[space][space]
This is the second line Best Practices
- Leave blank lines between paragraphs for clearer structure
- Don't rely on line breaks to create lists or layouts
- Use appropriate headings to organize content structure
Comments
Comments are currently unavailable.
Enable GitHub Discussions for this repository and complete the giscus configuration to turn comments on.