Today friends in WeChat group sent a link, said together to get a personal blog ~ I took a look, is based on Hexo + lot, say it out, after a good blog, feel is good, but the problem is coming, have never written blog this kind of things, md have seen a lot of, but let me write up and I like what also not 😂, Go baidu one, have a lot of detailed and simple tutorial, but I think oneself also write, arrangement!
I. Official documents
Markdown Syntax (Simplified Chinese Version)
Second, basic grammar
1. The title
Syntax: ‘#’ + ‘space’ + title, shortcut key: Cmd + H
# Level 1 title
## Secondary title
###
####
##### five level titles
######
Copy the code
Primary title
The secondary title
Level 3 title
Level 4 titles
Five titles
Six levels of headings
2. References
Syntax: ‘>’ + ‘space’ + content
> Reference contentCopy the code
Refer to the content
List 3.
3.1 Unordered List
Unordered list syntax: ‘-/+/*’ + ‘space’ + ‘text’
* Red
* Green
* Blue
Copy the code
Is equivalent to
- Red
- Green
- Blue
Copy the code
Is equivalent to
+ Red
+ Green
+ Blue
Copy the code
- Red
- Green
- Blue
3.2 Ordered List
Ordered list syntax: ** ‘1.’ + ‘space’ + ‘text’ **
1. Red
2. Green
3. Blue
Copy the code
- Red
- Green
- Blue
4. The code block
Syntax: ‘+’ content ‘+’ ‘
alert("hello world")
Copy the code
alert(“hello world”)
Line code
` vue ` is in good conditionCopy the code
Vue useful
5. Line
Grammar: * * * or * * * * * — – or — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — —
* * *Copy the code
Links to 6.
Syntax: Link text
/ my blog (https://imminmin.github.io/)Copy the code
My blog
Picture 7.
Grammar:! [Annotation of picture](link address of picture)
Form 8.
language | evaluation |
---|---|
javaScript | dad |
vue | Rain Creek is awesome |
jQuery | nice |
php | The best language in the world! |