i18n(ko-KR): create sdk.mdx#89
Conversation
WalkthroughA new documentation file in Korean has been introduced for the StudioCMS SDK. This file provides a structured overview of the SDK's main namespaces, functions, and usage examples, including both the standard SDK and its cached variant. The documentation explains how to import and utilize various components such as authentication, initialization, content retrieval, content modification, database access, REST API integration, and utility functions within Astro projects. The content is formatted as an Astro MDX file and includes i18n support. Changes
Suggested labels
Suggested reviewers
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Lunaria Status Overview🌕 This pull request will trigger status changes. Learn moreBy default, every PR changing files present in the Lunaria configuration's You can change this by adding one of the keywords present in the Tracked Files
Warnings reference
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
src/content/docs/ko/how-it-works/sdk.mdx (1)
25-28: Unify object naming in descriptive text
The prose refers tostudioCMSSDKandstudioCMSSDKCached, but the code samples import them asSDKandSDKCached. To avoid confusion, update the narrative to mentionSDK/SDKCacheddirectly (for example, "SDK객체" and "SDKCached객체").
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/content/docs/ko/how-it-works/sdk.mdx(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: Run Starlight Link Check
🔇 Additional comments (4)
src/content/docs/ko/how-it-works/sdk.mdx (4)
9-9: Verify import alias resolution
The import path uses a leading tilde (~) inimport ReadMore from '~/components/ReadMore.astro';Ensure that your Astro/MDX configuration defines
~as a valid alias. If not, you may need to switch to a relative path or another alias (e.g.@src/or../components/).
17-24: Review code fence configuration
All snippets are marked with ````ts twoslash. Confirm that your MDX processor and syntax highlighter support the `twoslash` directive. If they don’t, consider using standard TypeScript fences (ts) or updating your plugin settings to enable Twoslash.
20-23: Confirm virtual module import syntax
You have:import SDK from 'studiocms:sdk'; // 또는 import SDKCached from 'studiocms:sdk/cache';Make sure the
studiocms:prefix is properly defined as a virtual module in your build setup (Vite/Astro). If it’s mis‑configured, consumers might need to adjust these paths.
292-295: Verify anchor link forSDK.db
The last<ReadMore>links to#sdkdb. Depending on your slug generation rules, the heading### SDK.dbmight slugify differently (e.g.sdkdbvsskddb). Please confirm the correct anchor or make it explicit to prevent broken links.
* start of beta.16 docs * add updated label in sidebar * add run to npm command * add new guides * update translations * add upgrade docs * link to self-hosted guide * update links * add skip2 to sidebar * update landing page video * add: translations mini guide * fix link * update file structure * update badge * add process info and notes * update * remove unused dep * fix changelogs * cleanup * update * add sort order * collapse the version guides by default * relocate files * update * update links * disable edit url for release notes * fix * update to pre-released versions * Update guides descriptions and guide index * add badge * update * fix spelling * update deps * update * fix cap * update * test * latest guide system * attempt fix * update lunaria * fix? * add exclude rule * add note with coolify gist * fix file structure * add note * update link * make more dynamic * update url * update submodule to main * update * fix knip * update * update to use new studiocms add command * Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * cleanup * update * Update src/content/docs/en/how-it-works/cli.mdx Co-authored-by: Armand Philippot <git@armand.philippot.eu> * Update src/content/docs/en/guides/contributing/translations.mdx Co-authored-by: Armand Philippot <git@armand.philippot.eu> * remove old link plugin * fix * fix wording * feat: specify that Crowdin is used for packages Co-authored-by: Adam Matthiesen <amatthiesen@outlook.com> * Apply suggestions from code review Co-authored-by: Felix Schneider <99918022+trueberryless@users.noreply.github.com> * Update src/content/docs/en/guides/contributing/translations.mdx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * i18n(ko-KR): create `how-it-works/index.mdx` (#88) * i18n(ko-KR): create `sdk.mdx` (#89) * i18n(ko-KR): create `translations.mdx` (#90) * fix * update packages to official release status --------- Co-authored-by: Paul Valladares <85648028+dreyfus92@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Armand Philippot <git@armand.philippot.eu> Co-authored-by: Felix Schneider <99918022+trueberryless@users.noreply.github.com> Co-authored-by: Junseong Park <39112954+jsparkdev@users.noreply.github.com>
Description
create
sdk.mdxSummary by CodeRabbit