当前位置:网站首页>Day01 markdown log entry tips

Day01 markdown log entry tips

2022-07-05 07:36:00 33 year old Java enthusiast

markdown grammar

title

#+ title Class A

##+ title second level

###+ title Level three

#######+ title Level six

#  title 
##   title 
###  title 
####  title 
####  title 
#####  title 
######  title    # The highest 6 level 

typeface

I am Italic.

I'm black

I'm slanted blackbody

I'm a strikethrough

* I am Italic. *    # An asterisk 

** I'm black **  # One more pair of asterisks 

*** I'm slanted blackbody ***  # Three pairs of asterisks are   It's slanting and dark 

~~ I'm a strikethrough ~~  # Two wavy lines are strikethrough 

picture And link

![ Screenshot ](D:\ picture \ Phone screenshot \IMG_8377.PNG)   # Screenshot's 
[ Jump Links ](www.baidu.com)       # link 

 Distinguish memory ( Be careful )
 picture   And the method of linking is only one difference ! Number in front 

Code

​``` Code type 
     Code 
    
​```
 Or just insert the code block directly 

example

public class hello{
    
	public sataic voic main(string[] arg){
    
		system.out.println('hello,world');
	}
}

Correct code errors

public class hello{
    
    public static void main(String[] args){
    
        System.out.println("hello,world");
    }
}

list

  1. I am a 1
  2. I am a 2
  3. I am a 3
  • I have no rules
  • I have no rules 2
1. Space means that you can turn on the list format 

1.  I am a 1    
2.  I am a 2
3.  I am a 3

- Spaces enable the irregular list format 

-  I have no rules 
-  I have no rules 2

form

full name Birthday Gender
Xiao Ming 6-1 male
 full name | Birthday | Gender 
--|--|--|
 Xiao Ming |6-1| male 

Split line



---  # Three horizontal bars or three stars represent a dividing line 

***

quote

I am quoting , Add one more > No. 1 is enough . You can add several more

原网站

版权声明
本文为[33 year old Java enthusiast]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202140553220643.html