# Markdown 語法


# Table of Content

[[toc]]
1

# 強調

`我被框起來了`
1

我被框起來了


# Code 分隔

const foo = 'foo'
1
const bar = 'bar';

1
2

# YouTube

Youtube
<iframe width="100%" height="315" src="https://www.youtube.com/embed/7tdsTRV2b58" 
title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; 
clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
1
2
3
4
5

# 項目符號+-


+ a
+ b
  1. OuO
  2. QuQ
  - 123

1
2
3
4
5
6
  • a
  • b
    1. OuO
    2. QuQ
    • 123

# 引用>


> The more I learn, the more I realize how much I don't know.  
> --- Albert Einstein
1
2

The more I learn, the more I realize how much I don't know.
--- Albert Einstein

# pic


![CAT](/blog-vuepress/images/cat.jpg)
1

CAT

# emoji


:tada: 

:100:
1
2
3

🎉

💯

# tip warning danger


::: tip This is a tip 
456<br>
+ 123<br>
:::
1
2
3
4

This is a tip

456

  • 123

# table


| Tables        | Are           | Cool  |
| ------------- |-------------| -----|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |
1
2
3
4
5
TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1

# 展開



::: details [展開]
```js
console.log('Hello, VuePress!')
:::

1
2
3
4
5
6
[展開]
console.log('Hello, VuePress!')
1

# 收合

<details open>
  <summary>html tag</summary>
記得空一行 

open預設展開 若要收合刪掉即可
| HTML TAG | Eng.            | X
| -------- | --------------- | ------------ |
| var      | variable        | Text         |
| q        | quotation       | Text         |

</details>
1
2
3
4
5
6
7
8
9
10
11
html tag

記得空一行

open預設展開 若要收合刪掉即可

HTML TAGEng.X
varvariableText
qquotationText

# 插入語法補充

1a
2b
3c
4d
5e

高亮{1,3-5}
 

 
 
 


1
2
3
4
5
6
7
取消行數:no-line-numbers
Last Updated: 2022/6/4 下午11:16:38
Contributors: Richard Lin