Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- Astro entrypoints sit in `src/pages/`, with shared wrappers in `src/layouts/` and UI elements in `src/components/`.
Sign in to like and favorite skills
src/pages/, with shared wrappers in src/layouts/ and UI elements in src/components/.src/content/ (notably the posts collection); keep media under public/ so Astro can serve it statically.src/styles/, while reusable conversion helpers are in scripts/ (see convert-notebook.py for notebook imports).dist/; delete before committing if you run a local build.npm run dev — start the Astro dev server with hot reload for pages and components.npm run build — run astro check for type/content safety, then produce a production bundle in dist/.npm run preview — serve the latest build to verify routing and styling before publishing.npx astro check — quick type and content collection validation without generating output..astro, .ts(x), and configuration files; keep imports sorted by path depth as in existing modules.Hero.tsx, PostCard.astro); content collections use kebab-case slugs that match file names.import/export) to align with astro.config.mjs and tailwind.config.mjs.npx astro check and npm run build before opening a PR.npm run preview to document UX changes.Add new post template, Fix build warning). Conventional prefixes such as feat: are welcome but not required.dist/ assets.build, preview, etc.), linked issues when applicable, and media for UI changes.scripts/convert-notebook.py to normalize frontmatter and asset references.