Syntax
문자열 꾸미기 (Text Decorator)
강조 (Bold)
Input
**테스트 강조** 효과를 지정할 수 있다.
Output
테스트 강조 효과를 지정할 수 있다.
기울임 (italic)
Input
_테스트 기울임_ 효과를 지정할 수 있다.
Output
테스트 기울임 효과를 지정할 수 있다.
링크 연결 (Link)
Input
[www.naver.com](http://www.naver.com)
Output
표 (Table)
Input
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Output
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
코드 블럭 (Code blocks)
기본형
Input
```js
const foo;
```
Output
const foo;
강조형
Input
```js{2}
const a;
const b;
const c;
```
Output
const a;
const b;
const c;
커스텀 블럭 (Tip/Warning/Danger)
Input
::: tip
This is a tip
:::
::: warning
This is a warning
:::
::: danger
This is a dangerous warning
:::
Output
TIP
This is a tip
WARNING
This is a warning
DANGER
This is a dangerous warning
차트 (Flow Chart)
Flow Chart 관련 매뉴얼을 참조
뱃지 (Badge)
<Badge text="tip"/>
<Badge text="tip" type="tip"/> // default
<Badge text="warn" type="warn"/>
<Badge text="error" type="error"/>
<Badge text="tip" type="tip" vertical="top"/> // default
<Badge text="tip" type="tip" vertical="middle"/>
← Installation Study →