首页 > 其他 > 详细

Mastering Markdown

时间:2018-11-25 15:47:57      阅读:181      评论:0      收藏:0      [点我收藏+]

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

    Images

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

技术分享图片

[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

Mastering Markdown

原文:https://www.cnblogs.com/rosendolu/p/10015613.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!