> For the complete documentation index, see [llms.txt](https://help.listly.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.listly.io/about/blog/undefined.md).

# 클로드로 타 언어 페이지 생성 후, 깃북에 업로드하는 방법

## \[예제] 한국어 문서를 이용해 영어 문서 생성하는 방법

{% stepper %}
{% step %}

### 번역이 필요한 페이지를 마크다운 파일(\*.md) 생성하기

<details>

<summary><strong>A. 문서 편집기에 복사 붙여넣기하여 마크다운 파일 생성</strong></summary>

번역이 필요한 페이지에 방문해 상단 화살표 클릭 후, **\[Markdown으로 보기]**&#xB97C; 눌러주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FYEwgeR3rbyYHzHqhq4zN%2Fimage.png?alt=media&amp;token=57af850c-0b75-47f3-a0f8-74e278716637" alt=""><figcaption></figcaption></figure>

새 페이지에서 마크다운으로 보여지는 파일 **내용을 복사(Ctrl+C / Cmd+C)** 후, 문서 편집기를 이용해 .md 파일을 생성해주세요.&#x20;

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FPBBBKeBnG9lvWpMJZCDK%2Fimage.png?alt=media&amp;token=50fc5971-87c9-4e53-b872-c5bbdfcc37e6" alt=""><figcaption></figcaption></figure>

</details>

<details>

<summary><strong>B. 터미널에서 Vim으로 마크다운 파일 생성</strong></summary>

번역이 필요한 페이지에 방문해 상단 화살표 클릭 후, **\[Markdown으로 보기]**&#xB97C; 눌러주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FYEwgeR3rbyYHzHqhq4zN%2Fimage.png?alt=media&amp;token=57af850c-0b75-47f3-a0f8-74e278716637" alt=""><figcaption></figcaption></figure>

새 페이지에서 마크다운으로 보여지는 **파일 내용을 복사(Ctrl+C / Cmd+C)**&#xD574;주세요.&#x20;

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FPBBBKeBnG9lvWpMJZCDK%2Fimage.png?alt=media&amp;token=50fc5971-87c9-4e53-b872-c5bbdfcc37e6" alt=""><figcaption></figcaption></figure>

**터미널에서 Vim 텍스트 에디터**를 열어주세요. <mark style="background-color:$primary;">맥OS 터미널에서 별도의 설치 없이 바로 사용 가능</mark>합니다.&#x20;

```viml
pwd // 저장할 파일 위치 확인해주세요.
vim fileName.md // 파일 이름 변경 후, 엔터 키를 눌러주세요.
i // 입력 모드로 들어가기
// Ctrl C 또는 Cmd C 키를 눌러 복사한 내용을 붙여넣어주세요.
// esc 키 누르기
:wq // 수정한 내용을 저장 후, 에디터를 종료해주세요.
```

</details>

{% endstep %}

{% step %}

### 클로드 프로젝트 생성하기

**2-A.** **\[New Project]** 버튼을 클릭해 새로운 프로젝트를 생성해주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FSNSEWU2WE7gouofceUiV%2Fimage.png?alt=media&amp;token=5d9733b2-95f3-4849-b5f9-3cba11effcdc" alt=""><figcaption></figcaption></figure>

**2-B.** 매번 다국어 페이지 생성 시마다 가이드라인을 추가하지 않도록 **\[Instructions]**&#xB97C; 추가해주세요. 다른 언어 페이지 생성 시, 약간의 프롬프트 수정이 필요할 수 있습니다. 예를 들어, 중국어 번역 시 '중국 본토(중국), 싱가포르, 말레이시아 등에서 사용하는 중국어 간체로 번역'해달라고 명시해주었습니다.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2F8BJzBwnduZlCS7iT8Vmo%2Fimage.png?alt=media&amp;token=a6f55173-a204-42ec-9fc1-5cf8675f8237" alt=""><figcaption></figcaption></figure>

```
I'm translating the attached markdown files from Korean to English. Can you localize them so they read naturally in American English? For tone, think Slack's help center docs that are professional but friendly. I'll be importing these into GitBook for multi-language pages. A few notes:
- Keep the company name (Listly) and feature names (Extract Part, Deep Extract, etc.) as-is.
- Leave the hyperlinks alone, and I'll fix those myself.
- Translate button labels too, unless they're feature names.
- Translate technical terms only if there's a standard translation; otherwise keep the English terms (CSS Selector, HTML, etc.).
```

{% hint style="info" %}
**선택사항**

클로드에 문맥으로 추가하기 위해 다른 파일들을 참고용으로 공유하고자 할 경우, 동일하게 .md 파일로 변환해 공유하실 수 있습니다.&#x20;

![](https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2Fh6CeQoLFwrk5yB2PE1MU%2Fimage.png?alt=media\&token=d0035858-3c92-48b1-b50c-79e8b210c18e)
{% endhint %}

**2-C. 번역 페이지 생성하기**

번역을 요청하는 프롬프트 작성 후, 실행 버튼을 눌러주세요. 번역 페이지가 생성되면 우선 .md 파일 그대로 다운받아주세요.&#x20;

```
Can you please translate the attached dataLoad.md from Korean to English? The files in the context are our help center docs, so please keep the tone consistent with the other files I shared.
```

{% endstep %}

{% step %}

### 깃북으로 마크다운 파일 가져오기

**3-A. \[Insert subpages]** > **\[Import pages]**&#xB97C; 차례로 클릭해주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FiiV624Dkts0hVHl2VGZr%2Fimage.png?alt=media&amp;token=52074aa5-53ab-4b89-ad80-daed63c3be37" alt=""><figcaption></figcaption></figure>

**3-B. \[File]** 버튼을 클릭해주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FNfpuWXJ0d4M2Tim0LZOt%2Fimage.png?alt=media&amp;token=2f874569-58fe-45e3-8f05-07e7c59c0902" alt=""><figcaption></figcaption></figure>

**3-C. \[Start import]** 버튼을 눌러주세요.

<div><figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FX6u9FoqlyaEIUWlKlGLP%2Fimage.png?alt=media&amp;token=ce933d3c-4626-4327-8c49-8f18dff1b34e" alt=""><figcaption></figcaption></figure> <figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FO6BKPhppBFvFYjm3Pe4G%2Fimage.png?alt=media&amp;token=2f4e64b2-8355-4dd0-8a54-0b855b3b63db" alt=""><figcaption></figcaption></figure></div>

**3-D.** 파일이 업로드되면 **이름**과 **슬러그(slug)**&#xB97C; 변경해주세요.

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FV7Fb2WgZKp9pBxxhUbZN%2Fimage.png?alt=media&amp;token=c66e50b8-ed58-41e2-87f1-9d128ba714cb" alt=""><figcaption></figcaption></figure>

<figure><img src="https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FaPkzZzJfwkEFhEvtm71t%2Fimage.png?alt=media&amp;token=0fea5f34-97c8-41dd-a79c-9026103c31d4" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
**슬러그(slug)란?**

URL 주소 중 해당 페이지의 경로와 의미를 나타내는 문자열입니다. 보통 페이지 제목과 동일하게 변경합니다. (예시) 페이지 제목이 Load More Data 인 경우, <https://help.listly.io/getting-started/extension-features/load-more-data>

![](https://3090065457-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgoHfMCeMlqJPW61OR5d1%2Fuploads%2FQAclDlAFCQrGqy21Hng8%2Fimage.png?alt=media\&token=57cfdcb7-5c16-41db-be87-50ab3ef09c3c)
{% endhint %}

{% endstep %}

{% step %}

### 번역 언어 페이지 내 이미지, 하이퍼링크 수정하기

**4-A. 이미지는 하나씩 추가**해주어야 합니다. 한국어 페이지를 제외한 모든 언어 페이지는 영어 이미지를 사용합니다.

**4-B.** 문서 내 **깨진 하이퍼링크가 있을 경우, 해당 언어 페이지 내 관련 문서 링크로 변경**해주세요.

{% hint style="info" %}
기존 영어 헬프센터는 주요 언어 페이지로 간주해 워딩도 모두 수정해주었습니다. 그렇지만, 기타 언어 페이지는 별도의 워딩 수정없이 공개되어 있습니다.
{% endhint %}

{% endstep %}
{% endstepper %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.listly.io/about/blog/undefined.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
