편집 지침

마크다운 문법

기본적인 마크다운 문법입니다.

제목

각 섹션을 나누기 위해 제목을 사용합니다. 제목은 문서를 구조화시키고, 유저들이 내용을 이해하는 데 도움을 줍니다. 마크다운에서 제목은 샵 한개짜리의 # 제목 부터 시작하지만, 섹션을 나누는 데는 추천하지 않습니다.

## 제목입니다

부제목

섹션을 추가로 나누기 위해 부제목을 사용합니다. 내용의 계층을 구분하면 더 가독성 좋은 문서를 만들 수 있습니다.

### 부제목
각 제목과 부제목은 앵커(클릭할 수 있는 링크)를 만들며, 문서 목차에 자동으로 나타납니다.

텍스트 서식

마크다운 서식의 대부분을 적용할 수 있습니다.

서식적용 방법결과
굵게**굵게**굵게
기울이기*기울이기*기울이기
취소선~~취소선~~취소선

각 서식은 합쳐서 사용할 수 있습니다.

서식적용 방법결과
굵게 기울이기**_굵게 기울이기_**굵게 기울이기
굵게 취소선~~**굵게 취소선**~~굵게 취소선
취소선 기울이기~~*취소선 기울이기*~~취소선 기울이기

수학적 표기 등을 위해 HTML의 <sup><sub> 태그를 적용할 수 있습니다.

StyleHow to useResult
위 첨자<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.
- 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.
1. I'm a list item.
2. I'm another list item.
3. I'm the last list item.

2차 목록

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.
- 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.

PropDefaultType
namestring
sizemdstring
colorneutralstring
| 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.