转圈圈

Mastering Markdown

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
  1. Item1
  2. Item2
  3. Item3

Images

![images](https://images.pexels.com/photos/940880/pexels-photo-940880.jpeg?auto=compress&cs=tinysrgb&h=350)

images

[Github.com](http://github.com)

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

  1. DARING FIREBALL
  2. Github Guides
posted @ 2018-11-25 14:44  rosendolu  阅读(124)  评论(0编辑  收藏  举报