Advertisement
❮ Previous: Markdown Headings Next: Markdown Line Breaks ❯

Markdown Paragraphs

You can create paragraphs, using a blank line to separate one or more lines of text.

You do not need to indent paragraphs with spaces or tabs unless the paragraph is in a list.

Note - Don't put tabs or spaces in front of your paragraphs and keep lines left-aligned like this.


Syntax:

This is paragraph.
Markdown HTML Output
This is paragraph one.

This is paragraph two.
<p>This is paragraph one.</p>
<p>This is paragraph two.</p>

This is paragraph one.

This is paragraph two.


Advertisement

The following example create paragraphs:

Example

This is paragraph one.

This is paragraph two.

Try this code ❯

❮ Previous: Markdown Headings Next: Markdown Line Breaks ❯
Advertisement