각 섹션을 나누기 위해 제목을 사용합니다. 제목은 문서를 구조화시키고, 유저들이 내용을 이해하는 데 도움을 줍니다. 마크다운에서 제목은 샵 한개짜리의 # 제목 부터 시작하지만, 섹션을 나누는 데는 추천하지 않습니다.
## 제목입니다
섹션을 추가로 나누기 위해 부제목을 사용합니다. 내용의 계층을 구분하면 더 가독성 좋은 문서를 만들 수 있습니다.
### 부제목
마크다운 서식의 대부분을 적용할 수 있습니다.
| 서식 | 적용 방법 | 결과 |
|---|---|---|
| 굵게 | **굵게** | 굵게 |
| 기울이기 | *기울이기* | 기울이기 |
| 취소선 | ~~취소선~~ |
각 서식은 합쳐서 사용할 수 있습니다.
| 서식 | 적용 방법 | 결과 |
|---|---|---|
| 굵게 기울이기 | **_굵게 기울이기_** | 굵게 기울이기 |
| 굵게 취소선 | ~~**굵게 취소선**~~ | |
| 취소선 기울이기 | ~~*취소선 기울이기*~~ |
수학적 표기 등을 위해 HTML의 <sup> 및 <sub> 태그를 적용할 수 있습니다.
| Style | How to use | Result |
|---|---|---|
| 위 첨자 | <sup>위 첨자</sup> | 위 첨자 |
| 아래 첨자 | <sub>아래 첨자</sub> | 아래 첨자 |
Links connect different parts of your documentation and external resources, essential for user navigation and providing references.
To create a link, wrap the link text in brackets []().
[Nuxt UI](https://ui.nuxt.com/getting-started/installation)
For linking within your documentation, use root-relative paths like /getting-started/installation.
[Installation](/)
Organize related items in a structured, readable format. Markdown supports unordered, ordered, and nested lists for various content needs.
Use unordered lists for items without a specific sequence. Start each item with a - symbol.
- I'm a list item.
- I'm another list item.
- I'm the last list item.
Use ordered lists when item order matters, like steps in a process. Start each item with a number.
1. I'm a list item.
2. I'm another list item.
3. I'm the last list item.
Create hierarchical lists with sub-items for complex structures. Indent sub-items by four spaces for nesting.
- I'm a list item.
- I'm a nested list item.
- I'm another nested list item.
- I'm another list item.
Present structured data in rows and columns clearly. Tables are ideal for comparing data or listing properties.
| Prop | Default | Type |
|---|---|---|
name | string | |
size | md | string |
color | neutral | string |
| Prop | Default | Type |
|---------|-----------|--------------------------|
| `name` | | `string`{lang="ts-type"} |
| `size` | `md` | `string`{lang="ts-type"} |
| `color` | `neutral` | `string`{lang="ts-type"} |
Highlight important quotations, citations, or emphasized text. Blockquotes visually distinguish quoted content.
Single-line blockquotes are best for short, impactful quotes or citations that fit within a single line. To create a single-line blockquote, add a > in front of a paragraph. Ideal for short and impactful quotes.
Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
Multi-line blockquotes are suitable for longer quotes or when you need to include multiple paragraphs within a single quotation.
Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
Create beautiful, responsive, and accessible Vue applications with Nuxt UI.
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
>
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI.