Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs-ko/api/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: 인증, 작업, 생성, 업로드, Asset Library, Reference Analysi
## Setup

```bash
export SUME_API_KEY="sume_live_..."
export SUME_API_KEY="<SUME_API_KEY>"
export SUME_API_BASE_URL="https://www.sume.so/api/v1"
```

Expand Down
2 changes: 1 addition & 1 deletion content/docs-ko/public-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://www.sume.so/api/v1
서버 환경에서 워크스페이스 API 키를 전달하세요.

```bash
export SUME_API_KEY="sume_live_..."
export SUME_API_KEY="<SUME_API_KEY>"

curl https://www.sume.so/api/v1/me \
-H "Authorization: Bearer $SUME_API_KEY"
Expand Down
2 changes: 1 addition & 1 deletion content/docs/api/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For exact fields and enums, use the [API reference](/api/reference) and
## Setup

```bash
export SUME_API_KEY="sume_live_..."
export SUME_API_KEY="<SUME_API_KEY>"
export SUME_API_BASE_URL="https://www.sume.so/api/v1"
```

Expand Down
2 changes: 1 addition & 1 deletion content/docs/public-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ All endpoint paths on this page are relative to that base URL.
Send a workspace API key from a server-side environment:

```bash
export SUME_API_KEY="sume_live_..."
export SUME_API_KEY="<SUME_API_KEY>"

curl https://www.sume.so/api/v1/me \
-H "Authorization: Bearer $SUME_API_KEY"
Expand Down
2 changes: 2 additions & 0 deletions src/components/markdown-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";
import { Anchor } from "@/components/anchor";
import { H2, H3, H4 } from "@/components/header";
import { Pre } from "@/components/code-block";

type Props = {
markdown: string;
Expand All @@ -17,6 +18,7 @@ function MarkdownBlock({ markdown }: Props) {
h2: H2 as any,
h3: H3 as any,
h4: H4 as any,
pre: Pre as any,
}}
>
{markdown}
Expand Down
Loading