# heading 1
## heading 2
### heading 3
#### heading 4
##### heading 5
###### heading 6
**strong**
*strong*
***strong***
~~strong~~
![name](path)
[name](path)
- list1
- list2
- list3
1. list1
2. list2
3. list3
- [ ] checklist
- [ ] checklist
- [x] checklist
> Blockquote
---
`Inline code`
```
Code block
```
```js
console.log('Hello World!')
```
It can display filename in code block.
```js:main.js
console.log('Hello World!')
```
It uses highlight.js for code syntax support. Please read highlight.js Documentation for details.
| TH | TH |
|----|----|
| TD | TD |
Mathematical Formula Block (using KaTeX)
Please read KaTeX Functions Documentation for TeX syntax details.
$$
\frac{a}{b}
$$
or
$$ \frac{a}{b} $$
This is $a=b+c$
===
**Default**:
This is default color block.
===
===info
**Infomation**:
This is Infomation color block.
===
===success
**Success**:
This is success color block.
===
===warning
**Warning**:
This is warning color block.
===
===danger
**Danger**:
This is danger color block.
===
:>Summary
text...
:>
@[movie](./movie.mp4)
It creaties custom HTML Tag.
(defalut tag span
)
::<Tag Name>[.ClassName]
::
::menu
menu
::
::article.className
article
::
::div
div
::
# only className
::.className
only Class
::
<menu>
<span class="span">menu</span>
</menu>
<article class="className">
<span class="span">article</span>
</article>
<div>
<span class="span">div</span>
</div>