1. 程式人生 > 其它 >This.invoke和this.begininvoke的區別?

This.invoke和this.begininvoke的區別?

Markdown 基本語法

標題

在單詞或短語前新增井號(#)+ 一個空格,且井號(#)的數量代表標題的級別。
一級標題:
# 我是一級標題
二級標題:
## 我是二級標題

可選語法:文字下方新增任意數量的 == 號來標識一級標題,或者 -- 號來標識二級標題
heading level 1
==============
或
heading level 2
---------------

段落

要建立段落,請使用空白行將一行或多行文字進行分隔
I really like using Markdown.

I think I`ll use it to format all of my documents form now on.

換行

在一行的末尾新增兩個或多個空格,然後按回車鍵,即可建立一個換行(<br>)
This is the first line.  
And this is the second line.

粗體

要加粗文字,請在單詞或短語的前後各新增兩個星號(**)或下劃線(__)。
I just love **bold text**.
I just love __bold text__.
Love**is**bold

斜體

要用斜體顯示文字,請在單詞或短語前後新增一個星號(*)或下劃線(_)。
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.

粗斜體

要同時用粗體和斜體突出顯示文字,請在單詞或短語的前後各新增三個星號或下劃線。
This text is ***really important***.
This text is ___really important___.

引用

要建立塊引用,請在段落前新增一個 > 符號。
> Dorothy followed her through many of the beautiful rooms in her castle.

多個段落的塊引用

塊引用可以包含多個段落。為段落之間的空白行新增一個 > 符號。
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

巢狀塊引用

塊引用可以巢狀。在要巢狀的段落前新增一個 >> 符號。
> Dorothy followed her through many of the beautiful rooms in her castle.
>
>> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

帶有其它元素的塊引用

塊引用可以包含其他 Markdown 格式的元素。
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
>  *Everything* is going according to **plan**.

有序列表

要建立有序列表,請在每個列表項前新增數字並緊跟一個英文句點。數字不必按數學順序排列,但是列表應當以數字 1 起始。
1. First item
2. Second item
3. Third item
4. Fourth item

無序列表

要建立無序列表,請在每個列表項前面新增破折號 (-)、星號 (*) 或加號 (+) 。
- First item
* First item
+ First item
- Third item
	- Indented item

程式碼塊

要將單詞或短語表示為程式碼,請將其包裹在反引號 (`) 中。
At the command prompt, type `nano`.

轉義反引號
如果你要表示為程式碼的單詞或短語中包含一個或多個反引號,則可以通過將單詞或短語包裹在雙反引號(``)中。

多行程式碼塊

多行程式碼塊使用(```xml)

分割符

分隔符使用(---)請在分隔線的前後均新增空白行。
Try to put a blank line before...

---

...and after a horizontal rule.

連結

連結文字放在中括號內,連結地址放在後面的括號中,連結title可選。
[超連結顯示名](超連結地址 "超連結title")

帶格式化的連結:
強調 連結, 在連結語法前後增加星號。 要將連結表示為程式碼,請在方括號中新增反引號。

我是連結

強調連結

程式碼連結

圖片

要新增影象,請使用感嘆號 (!), 然後在方括號增加替代文字,圖片連結放在圓括號裡,括號裡的連結後可以增加一個可選的圖片標題文字。
![圖片alt](圖片連結 "圖片title")

連結圖片:
[![沙漠中的岩石圖片](/assets/img/shiprock.jpg "Shiprock")](https://markdown.com.cn)

轉義字元

要顯示原本用於格式化 Markdown 文件的字元,請在字元前面新增反斜槓字元 \ 。
\* Without the backslash, this would be a bullet in an unordered list.

*hello

內嵌 HTML 標籤

對於 Markdown 涵蓋範圍之外的標籤,都可以直接在檔案裡面用 HTML 本身。如需使用 HTML,不需要額外標註這是 HTML 或是 Markdown,只需 HTML 標籤新增到 Markdown 文字中即可。
This **word** is bold. This <em>word</em> is italic.