九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
Markdown 語法說明(簡體中文版)

<>訪問 Wow!Ubuntu

聲明: 這份文檔派生(fork)于繁體中文版,在此基礎(chǔ)上進行了繁體轉(zhuǎn)簡體工作,并進行了適當?shù)臐櫳?。此文檔用 Markdown 語法編寫,你可以到這里查看它的源文件?!阜斌w中文版的原始文件可以查看這里」--By @riku

注: 本項目托管于

Markdown: Basics (快速入門) / (點擊查看完整語法說明)

Getting the Gist of Markdown's Formatting Syntax

此頁提供了 Markdown 的簡單概念, 語法說明 頁提供了完整詳細的文檔,說明了每項功能。但是 Markdown 其實很簡單就可以上手,此頁文檔提供了一些范例,并且每個范例都會提供輸出的 HTML 結(jié)果。

其實直接試試看也是一個很不錯的方法, Dingus 是一個網(wǎng)頁應(yīng)用程序,你可以把自已編寫的 Markdown 文檔轉(zhuǎn)成 XHTML。

段落、標題、區(qū)塊代碼

一個段落是由一個以上的連接的行句組成,而一個以上的空行則會劃分出不同的段落(空行的定義是顯示上看起來像是空行,就被視為空行,例如有一行只有空白和 tab,那該行也會被視為空行),一般的段落不需要用空白或換行縮進。

Markdown 支持兩種標題的語法,Setextatx 形式。Setext 形式是用底線的形式,利用 = (最高階標題)和 - (第二階標題),Atx 形式在行首插入 1 到 6 個 # ,對應(yīng)到標題 1 到 6 階。

區(qū)塊引用則使用 email 形式的 '>' 角括號。

Markdown 語法:

A First Level Header====================A Second Level Header---------------------Now is the time for all good men to come tothe aid of their country. This is just aregular paragraph.The quick brown fox jumped over the lazydog's back.### Header 3> This is a blockquote.> > This is the second paragraph in the blockquote.>> ## This is an H2 in a blockquote

輸出 HTML 為:

A First Level Header

A Second Level Header

Now is the time for all good men to come tothe aid of their country. This is just aregular paragraph.

The quick brown fox jumped over the lazydog's back.

Header 3

This is a blockquote.

This is the second paragraph in the blockquote.

This is an H2 in a blockquote

修辭和強調(diào)

Markdown 使用星號和底線來標記需要強調(diào)的區(qū)段。

Markdown 語法:

Some of these words *are emphasized*.Some of these words _are emphasized also_.Use two asterisks for **strong emphasis**.Or, if you prefer, __use two underscores instead__.

輸出 HTML 為:

Some of these words are emphasized.Some of these words are emphasized also.

Use two asterisks for strong emphasis.Or, if you prefer, use two underscores instead.

列表

無序列表使用星號、加號和減號來做為列表的項目標記,這些符號是都可以使用的,使用星號:

* Candy.* Gum.* Booze.

加號:

+ Candy.+ Gum.+ Booze.

和減號

- Candy.- Gum.- Booze.

都會輸出 HTML 為:

  • Candy.
  • Gum.
  • Booze.

有序的列表則是使用一般的數(shù)字接著一個英文句點作為項目標記:

1. Red2. Green3. Blue

輸出 HTML 為:

  1. Red
  2. Green
  3. Blue

如果你在項目之間插入空行,那項目的內(nèi)容會用

包起來,你也可以在一個項目內(nèi)放上多個段落,只要在它前面縮排 4 個空白或 1 個 tab 。

* A list item. With multiple paragraphs.* Another item in the list.

輸出 HTML 為:

  • A list item.

    With multiple paragraphs.

  • Another item in the list.

鏈接

Markdown 支援兩種形式的鏈接語法: 行內(nèi)參考 兩種形式,兩種都是使用角括號來把文字轉(zhuǎn)成連結(jié)。

行內(nèi)形式是直接在后面用括號直接接上鏈接:

This is an [example link](http://example.com/).

輸出 HTML 為:

This is an example link.

你也可以選擇性的加上 title 屬性:

This is an [example link](http://example.com/ 'With a Title').

輸出 HTML 為:

This is an example link.

參考形式的鏈接讓你可以為鏈接定一個名稱,之后你可以在文件的其他地方定義該鏈接的內(nèi)容:

I get 10 times more traffic from [Google][1] than from[Yahoo][2] or [MSN][3].[1]: http://google.com/ 'Google'[2]: http://search.yahoo.com/ 'Yahoo Search'[3]: http://search.msn.com/ 'MSN Search'

輸出 HTML 為:

I get 10 times more traffic from Google than from Yahoo or MSN.

title 屬性是選擇性的,鏈接名稱可以用字母、數(shù)字和空格,但是不分大小寫:

I start my morning with a cup of coffee and[The New York Times][NY Times].[ny times]: http://www.nytimes.com/

輸出 HTML 為:

I start my morning with a cup of coffee andThe New York Times.

圖片

圖片的語法和鏈接很像。

行內(nèi)形式(title 是選擇性的):

![alt text](/path/to/img.jpg 'Title')

參考形式:

![alt text][id][id]: /path/to/img.jpg 'Title'

上面兩種方法都會輸出 HTML 為:

代碼

在一般的段落文字中,你可以使用反引號 ` 來標記代碼區(qū)段,區(qū)段內(nèi)的 &> 都會被自動的轉(zhuǎn)換成 HTML 實體,這項特性讓你可以很容易的在代碼區(qū)段內(nèi)插入 HTML 碼:

I strongly recommend against using any `` tags.I wish SmartyPants used named entities like `—`instead of decimal-encoded entites like `—`.

輸出 HTML 為:

I strongly recommend against using any tags.

I wish SmartyPants used named entities like&mdash; instead of decimal-encodedentites like &#8212;.

如果要建立一個已經(jīng)格式化好的代碼區(qū)塊,只要每行都縮進 4 個空格或是一個 tab 就可以了,而 &、> 也一樣會自動轉(zhuǎn)成 HTML 實體。

Markdown 語法:

If you want your page to validate under XHTML 1.0 Strict,you've got to put paragraph tags in your blockquotes:

For example.

輸出 HTML 為:

If you want your page to validate under XHTML 1.0 Strict,you've got to put paragraph tags in your blockquotes:

For example.

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Markdown 語法手冊 | 藍色夢想
圖靈社區(qū) : 閱讀 : Markdown語法說明(詳解版)
Markdown 語法說明
最實用的 Markdown 語法教程
在簡書怎么用markdown進行寫作
圖靈社區(qū) : 閱讀 : Markdown語法
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服