Markdown Paragraphs
Markdown paragraphs do not have special formatting; you simply write the text directly. To create a line break within a paragraph, use two or more spaces followed by an enter.
Alternatively, you can indicate the start of a new paragraph by using a blank line after the previous paragraph.
Fonts
Markdown supports the following fonts:
*Italic text*
_Italic text_
**Bold text**
__Bold text__
***Bold italic text***
___Bold italic text___
The display effect is as follows:
Separator Lines
You can create a separator line by using three or more asterisks, dashes, or underscores in a row, with nothing else in the line. You can also insert spaces between the asterisks or dashes. Each of the following examples creates a separator line:
***
* * *
*****
- - -
----------
The display effect is as follows:
Strikethrough
To add a strikethrough to text in a paragraph, simply add two tildes ~~
at both ends of the text. Here is an example:
tutorialpro.org
GOOGLE.COM
~~BAIDU.COM~~
The display effect is as follows:
Underline
Underlines can be achieved using the HTML <u>
tag:
<u>Underlined text</u>
The display effect is as follows:
Footnotes
Footnotes provide supplementary information about the text.
The format for Markdown footnotes is as follows:
[^Text to be annotated]
Here is an example demonstrating the use of footnotes:
Create a footnote like this [^tutorialpro].
[^tutorialpro]: tutorialpro.org -- Not just learning technology, but also dreams!!!
The demonstration effect is as follows: