GITHUB readme basic grammar

First, the headline wording:
the first method:
1, in the text below plus = equal sign, the text above it becomes a headline. Unlimited number equal to the number, but must be greater than 0, oh. .
2, in the following text underlined -, then the top of the text becomes the title, the same number underlined unlimited.
3, To = input number, the text is converted to above title without them, the need to add a blank line therebetween.
Another way :( recommend this method; note the need for a middle space)
About the title as well as scale representation is divided into six levels, reduce the size of the text displayed in the order. It is the number # (pound) to identify the different levels. A title has a #, # subheadings have two, and so on.
E.g:
# A title  
## subheadings  
### three title  
#### four title  
##### five title  
###### six title 
Second, the basic syntax editor  
1, stressed the font format
 We can use the following way to our text added to emphasize the effect of
* Stressed * (example: italics)  
 _ _ Stressed (example: italics)  
Emphasis added ** ** (example: bold)  
 __ emphasis added __ (example: bold)  
*** *** special emphasis on (example: bold italic)  
Special emphasis ___ ___ (Example: bold italic)  
2, the code  
``  
3, block highlighting  
```
@Override
protected void onDestroy() {
    EventBus.getDefault().unregister(this);
    super.onDestroy();
}
```  
4, tables (recommended by a blank line before the table, otherwise it might not affect the table display)
 
 Header | header | header
 ---- | ----- | ------  
 Cell Contents | cell contents | cell contents 
 Cell Contents | cell contents | cell contents  
 
5, other references
image  
! [Picture name] (https://www.baidu.com/img/bd_logo1.png)  
link  
[Link name] (https://www.baidu.com/)    
6. List 
1. Item 1  
2. Item 2  
3. Item 3  
   * Item 1 (a * number will appear as a black dot, note that there is a space, or directly as display items * 1) 
   * Item 2   
 
7, line (recommended fill two spaces directly behind the front row)
Can not directly enter wrap,  
Can fill two spaces in the back on a line of text,  
In this way the next line of text to wrap up.
Or two lines of text that is added directly to a blank line.
Wrap effect can be achieved, but the line spacing a little big.  
 
8, reference
> The first line quoted text  
> The second line of quoted text   
Reprinted from the article: https: //blog.csdn.net/qq_31796651/article/details/80803599

Guess you like

Origin www.cnblogs.com/yeshenmeng/p/11608444.html