Search...
Menu

Markdown common basic syntax

PDF

1. Headings

✍️It is indicated by the # symbol, the number of # indicates the level of the title, one # for the Heading 1, two # for the Heading 2, and so on.


Syntax
# Heading 1
## Heading 2
### Heading 3


Display effect:

Heading 1

Heading 2

Heading 3


2. List

✍️ Unordered lists: use asterisks *, plus +, minus Number-

✍️Ordered list: Add 1. 2. 3. etc. directly before the first word, and add a space character between the symbol and the text


Syntax
* Unordered lists
+ Unordered lists
- Unordered lists
1. Ordered list


Display effect:

文章图片


3 . Paragraph styling

✍️Use 1 asterisk * or 1 underscore _ to represent 【italics】

✍️Use 2 asterisks* or 2 underscores_ to indicate 【bold】

✍️Use 3 asterisks* or 3 underscores_ to indicate 【Bold italics】


Syntax
*italic text*, _italic text_
**Bold Text**、__Bold Text__
****Bold Italic Text***、___Bold Italic Text___


Display effect:

Italic text

bold text

Bold italic text


✍️ Add two wavy lines ~~ at both ends of the text to indicate 【strikethrough】.

✍️ <u> text </u> means 【underline】


Syntax
~~Delete text~~
< u> Underlined text </u>


Display effect:

Delete the text

Underlined text




4. Link

✍️[Link Text] (URL) / < URL >

Syntax
[HelpLook](https://www.helplook.net/en/)
<https://www.helplook.net/en/>


Display effect:

HelpLook

https://www.helplook.net/en/



5. Pictures

✍️![ Image alternative text] (image URL/local image path "optional title")

Syntax
![The San Juan Mountains are beautiful!](/assets /images/san-juan-mountains.jpg "San Juan Mountains")


Display effect:

article image



*For more Markdown advanced syntax reference, you can visit Official Markdown Tutorial.
Share this Article
Last modified: 2023-08-21Powered by