Demonstrate various markdown syntaxes for Chinese
Title
==========================================
The project name is generally displayed in the title, similar to the HTML \ <H1 \> <br/>
You only need to keep up with ==== under the title.
Medium title
-----------------------------------
In general, the title shows key items, similar to HTML \ <H2 \> <br/>
Enter ------ under the title.
### Subtitles
Subtitles are similar to HTML \ <H3 \> <br/>
The title format is as follows ### title <br/>
Note # There must be spaces between the character and the title
### Note !!! I have used subtitles to remind you of all the syntax prompts below !!!
### Single-line text box
This is a single-line text box. You only need two tabs and then enter the text.
### Multi-line text box
This is a text box with multiple lines
You can write code and so on. You only need to enter two tabs for each line of text before entering the text.
Here you can enter a piece of code
### For example, you can enter a piece of code in the multi-line text box to create a Java version of helloworld.
Public class helloworld {
/**
* @ Param ARGs
*/
Public static void main (string [] ARGs ){
System. Out. println ("helloworld! ");
}
}
### Link
1. [Click Here you can link to www.google.com] (http://www.google.com) <br/>
2. [Click Here I you can link to my blog] (http://guoyunsky.iteye.com) <br/>
### Only show images
! [GitHub] (http://github.com/unicorn.png "GitHub ")
### Click an image to enter a webpage. For example, I want to click icorn on GitHub and then enter www.github.com.
[! [Image] (http://www.github.com /)
[Image]: http://github.com/github.png "GitHub"
### Text is surrounded by characters
> Text is surrounded by characters
>
> Just add a space before the text.
>
> If You Want To wrap a line, enter a new line and enter a space. text is not followed.
> But> it is valid only when it is placed at the beginning of the row.
### Text is surrounded by characters and multiple characters
> The text is surrounded by some characters.
>
> Just add a space before the text.
>
>>> If you want to wrap a line, enter a new line and enter a space. text is not followed.
>
>>>> But> is valid only when it is placed at the beginning of the row.
### Special Character Processing
There are some special characters such as <, #. You only need to add the Escape Character \ before the special characters. <br/>
If you want to wrap a line, you can directly use the HTML Tag \ <br/\>
* Add points at the beginning of the line
Enter * at the beginning of the line, and enter the space.
Readme. md editing format on GitHub