skills/md/SKILL.md
Localized Markdown and MDX content guide for Better Translate projects.
npx skillsauth add jralvarenga/better-translate mdInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this guide when localized content lives in .md or .mdx files.
@better-translate/core@better-translate/mdThe core translator owns the locales.
@better-translate/md uses that same locale setup to find the right content file.
@better-translate/corecreateMarkdownHelpers()content/docs/
en/
getting-started.mdx
es/
getting-started.mdx
import { createMarkdownHelpers } from "@better-translate/md";
import { translator } from "./i18n";
export const docs = createMarkdownHelpers(translator, {
rootDir: "./content/docs",
});
const document = await docs.getDocument("getting-started", {
locale: "es",
});
Keep markdown helpers connected to the shared exported translator so locale inference stays aligned with the rest of the app.
Use @better-translate/md/server when the app already resolves locale per request and you want markdown loading to follow that request locale automatically.
documentation
Repository map for finding Better Translate packages, docs, and examples.
tools
Snapshot of the current public Better Translate package and adapter surface.
documentation
Right-to-left locale configuration guide for Better Translate.
development
React and Expo integration guide for Better Translate providers, hooks, and typed translation access.