markdown Gist Markdown Cheatsheet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Gist Markdown Cheatsheet相关的知识,希望对你有一定的参考价值。

# Heading 1 by # Heading 1
## Heading 2 by ## Heading 2
### Heading 3 by ### Heading 3
#### Heading 4 by #### Heading 4
##### Heading 5 by ##### Heading 5
###### Heading 6 by ######Heading 6	

---

Paragraph

text `Inline Code` text	by \`Inline Code\`

~~Mistaken text.~~ by \~\~Mistaken text.\~\~

*Italics* by \*Italics\*

**Bold** by \*\*Bold\*\*

---

Tasks
- [ ] a task list item
- [ ] list syntax required
- [ ] normal **formatting**
- [ ] incomplete
- [x] completed

---

Code Blocks

    4 space indention
    makes full-width
    standard code blocks

```js
var now = new Date();

var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}
today =  days[now.getDay()] + ", " +
         months[now.getMonth()] + " " +
         date + ", " +
         (fourdigits(now.getYear())) ;

document.write(today);
```

```css
#sc_drag_area {
  height:100px;
  left:150px;
  position: absolute;
  top:100px;
  width:250px;
  z-index: 9999;
}
```

---

* List item one
* List item two
    * A nested item

---

1. Number list item one		
	1.1. A nested item
2. Number list item two
3. Number list item three

---

> Quote
> 
> Second line Quote

---

Standard link =  http://ghost.org	
[Custom Text Link](http://ghost.org)

---

![Image](https://dl.dropboxusercontent.com/u/41297054/Pic.jpeg)

---

Table

| Left-Aligned  | Center Aligned  | Right Aligned |
| :------------ |:---------------:| -----:|
| col 3 is      | some wordy text | $1600 |
| col 2 is      | centered        |   $12 |
| zebra stripes | are neat        |    $1 |

---

Special Icons


    RED APPLE (&#x1F34E;): 

以上是关于markdown Gist Markdown Cheatsheet的主要内容,如果未能解决你的问题,请参考以下文章

markdown Markdown Gist

markdown R Gist

markdown NPX + Gist

markdown 测试gist vscode扩展

markdown Gist客户列表。

markdown Gist Embed示例:jQuery