Skip to content

Instantly share code, notes, and snippets.

@akirco
Last active July 29, 2023 12:40
Show Gist options
  • Save akirco/4543214ca7eeee637873f9cad20f545e to your computer and use it in GitHub Desktop.
Save akirco/4543214ca7eeee637873f9cad20f545e to your computer and use it in GitHub Desktop.
Markdown Syntax Test
cover tags categories
markdown
development

Markdown Cheatsheet

标题一

# 标题一

标题二

## 标题二

标题三

### 标题三

标题四

#### 标题四

普通文本

普通文本

强调文字

_强调文字_

删除线文本

~~删除线文本~~

加粗文本

**加粗文本**

加粗强调文本

**_加粗强调文本_**

超链接 and http://www.google.fr/

[超链接](http://www.google.fr/) or http://www.google.fr/

GOTO 标题一

# 锚点链接

[GOTO 标题一](#标题一 "Goto 标题一")

表格

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
| First Header | Second Header |
| ------------ | ------------- |
| Content Cell | Content Cell  |
| Content Cell | Content Cell  |

代码块

var specificLanguage_code = {
  data: {
    lookedUpPlatform: 1,
    query: "Kasabian+Test+Transmission",
    lookedUpItem: {
      name: "Test Transmission",
      artist: "Kasabian",
      album: "Kasabian",
      picture: null,
      link: "http://open.spotify.com/track/5jhJur5n4fasblLSCOcrTp",
    },
  },
};
```javascript
var specificLanguage_code = {
  data: {
    lookedUpPlatform: 1,
    query: "Kasabian+Test+Transmission",
    lookedUpItem: {
      name: "Test Transmission",
      artist: "Kasabian",
      album: "Kasabian",
      picture: null,
      link: "http://open.spotify.com/track/5jhJur5n4fasblLSCOcrTp",
    },
  },
};
```
  • 项目符号列表
    • 嵌套项目符号
      • 子嵌套项目符号
  • 项目符号列表 2
- 项目符号列表 1
  - 嵌套项目符号
    - 子嵌套项目符号
- 项目符号列表 2
  1. 编号列表 1
    1. 子编号列表 1
    2. 子编号列表 2
  2. 编号列表 2
1. 编号列表 1
   1. 子编号列表 1
   2. 子编号列表 2
2. 编号列表 2
  • 未完成的任务
  • 已完成的任务
- [ ] 未完成的任务
- [x] 已完成的任务
  • 未完成的任务
    • 未完成的子任务
- [ ] 未完成的任务
  - [ ] 未完成的子任务

块引用

嵌套块引用

> 块引用
>
> > 嵌套块引用

分隔线


---

图片

picture alt

![picture alt](https://cdn.jsdelivr.net/gh/akirco/CDN@latest/Image/LOL/leesin/leesin1.png "Title is optional")

视频

<video
  src="https://cdn.jsdelivr.net/gh/akirco/CDN@latest/Video/success.mp4"
  controls
  width="auto"
  height="auto">
</video>

iframes

<YouTube  id="lkIFF4maKMU"/>

折叠文本

Title 1

Content 1 Content 1 Content 1 Content 1 Content 1

Title 2

Content 2 Content 2 Content 2 Content 2 Content 2

<details>
<summary>Title 1</summary>
<p>Content 1 Content 1 Content 1 Content 1 Content 1</p>
</details>

html

HTML

Some HTML code here

<h3>HTML</h3>
<p>Some HTML code here</p>

链接到页面的特定部分

Go To TOP

[text goes here](#section_name)

# section_title

# <a name="section_name"></a>

热键

⌘F

<kbd>⌘F</kbd>

热键列表

Key Symbol
Option
Control
Command
Shift
Caps Lock
Tab
Esc
Power
Return
Delete
Up
Down
Left
Right
| Key       | Symbol |
| --------- | ------ |
| Option    ||
| Control   ||
| Command   ||
| Shift     ||
| Caps Lock ||
| Tab       ||
| Esc       ||
| Power     ||
| Return    ||
| Delete    ||
| Up        ||
| Down      ||
| Left      ||
| Right     ||

Emoji

❗ Use emoji icons to enhance text. 👍 Look up emoji codes at emoji-cheat-sheet.com

:EMOJICODE:
@akirco
Copy link
Author

akirco commented Jul 29, 2023

这是一条测试评论

@akirco
Copy link
Author

akirco commented Jul 29, 2023

@akirco
Copy link
Author

akirco commented Jul 29, 2023

@akirco
Copy link
Author

akirco commented Jul 29, 2023

你好

@cocshank
Copy link

你好

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment