擴充套件語法
轉義字元
markdown是一種輕量級的標記語言,可用於將格式設定元素新增到純文字文件中。markdown 由john gruber於2023年建立,如今已成為世界上最受歡迎的標記語言之一。markdown 是一種輕量級標記語言,它允許人們使用易讀易寫的純文字格式編寫文件。
markdown 語言在 2004 由約翰·格魯伯(英語:john gruber)建立。
markdown 編寫的文件可以匯出 html 、word、影象、pdf、epub 等多種格式的文件。
markdown 編寫的文件字尾為 .md, .markdown
# h1
## h2
### h3
**bold text**
bold 粗體
*斜體*
斜體
>塊引用
塊引用
1. first item
2. second item
3. third item
first item
second item
third item
first item
second item
third item
indented item
indented item
fourth item
- first item
- second item
- third item
fourth item
`code`
code
要建立水平線***,請單獨在一行上使用三個或更多的星號(),破折號(---)或下劃線(___)。
注意: 有些解析器無法解析
| syntax | description |
| :----------- | :-----------: |
| header | title |
| paragraph | text |
syntax
description
header
title
paragraph
text
markdown基本語法允許您通過將行縮排四個空格或乙個製表符來建立**塊。如果發現不方便,請嘗試使用受保護的**塊。根據markdown處理器或編輯器的不同,您將在**塊之前和之後的行上使用三個刻度線(```)或三個波浪號(~~~)
here's a sentence with a footnote. [^1]
[^1]: this is the footnote.
here』s a sentence with a footnote. 1
### my great heading
term
: definition
term
definition
~~the world is flat.~~
the world is flat.
- [x] write the press release
- [ ] update the website
- [ ] contact the media
字元名稱\
反斜槓`
刻度線*星號_
下劃線{}大括號
中括號()括號#
井號+加號-
減號(連字元).點
!感嘆號|管道
this is the footnote. ↩︎
markdown常用語法
在文字前面加上 即可。次級標題只需要增加 即可,標題字型大小相應降低,總共6級。注 和標題之間建議保留乙個字元的空格,這是最標準的 markdown 寫法。header 1 header 2 header 3 header 4 header 5 header 6header 4 header 5 h...
markdown常用語法
markdown現在是github的標準文件格式,容易書寫且在不同平台展示效果相同。markdown常用語法如下。乙個 代表一級,最多6級 用兩個星號包圍標識加粗,乙個星號標識斜體,乙個下劃線標識斜體 兩個波浪線標識刪除 url鏈結 中括號後面跟引號表示url 插入 尖括號代表引用 尖括號代表引用 ...
Markdown常用語法
一級標題 二級標題 標題 四級標題 五級標題 六級標題1 換行 在行末新增兩個以上空格加上回車或者直接使用乙個空行表示換行 2 字型 斜體 粗體 粗斜體 用下劃線 代替星號 也一樣 3 分割線 你可以在一行中用三個以上的星號 減號 底線來建立乙個分隔線,行內不能有其他東西。你也可以在星號或是減號中間...