Mastering Markdown
Posted rosendolu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mastering Markdown相关的知识,希望对你有一定的参考价值。
title: Mastering Markdown
date: 2018-11-21 11:28:34
tags: markdown
comments: true
---
What is markdown?
Markdown is a lightweight and easy-to-use syntax for styling all forms writing on the Github.com platform!
Syntax Guide
Here is an overview of MarkDown syntax that you can use anywhere on Github.com or in your own text files.
Headers
# This is an h1<h1>
## This is an h2<h2>
### This is an h3<h3>
#### This is an h4<h4>
##### This is an h5<h5>
###### This is an h6<h6>
This is an h1
This is an h2
This is an h3
This is an h4
This is an h5
This is an h6
Emphasis
*This text will be italic*
_This text also be italic_
**This text will be bold**
__This text will be blod__
_You **can** combine them_
This text will be italic
This text also be italic
This text will be bold
This text will be blod
You can combine them
Lists
- unordered
* Item 1
* Item 2
* Item 3
- Item 1
- Item 2
- Item 3
- ordered
1. Item1
1. Item2
1. Item3
- Item1
- Item2
Item3
Images
![images](https://images.pexels.com/photos/940880/pexels-photo-940880.jpeg?auto=compress&cs=tinysrgb&h=350)
Links
[Github.com](http://github.com)
Blockquotes
> one
> two
> three
> four
one
two
three
four
Inline code
code
code
code
- Wrap them in backticks
- indent width four spaces
if(isAwesoem) {
return true;
}
syntax heighlighting
if(isAwesome) {
return true;
}
Extras(github supports)
if you ever want to direct a comment at someone, you can prefix their name with an @
symbol: Hey: @rosendolu --love your Sweater!
And of course emojj! ? : camel: ??
References
以上是关于Mastering Markdown的主要内容,如果未能解决你的问题,请参考以下文章