Talking and Doc'ing
1. Click Elian's link to join the codespace
2. Click Elian's link to see the live preview of the codespace
3. Click Sarah's link to see our shared document to keep us organized
Integrations Up For Grabs:
- Alpine: Elian -> Done - no translations
- Lit: Elian -> Done - no translations
- Preact: Otterlord - Done (**translator needed**)
- React: Elian -> Done - no translations
- solid: HiDeoo -> Done - no translations
- svelte: Otterlord - Done (no translator required)
- vue: Atharva -> Done
- Cloudflare: Otterlord - Done (**translator needed**)
- Netlify: Atharva -> Done
- Node: Otterlord - Done (**translator needed**)
- Vercel: Atharva -> Done
- markdoc: Sarah -> Done (**translator needed**)
- mdx: Atharva -> Done
- partytown: HiDeoo -> Done - removed 2 sentences
- sitemap: Fryuni -> Needs review (**translator required**)
- tailwind @Coffee-Nerd (Jeffrey Johnston) Done
1. Do the `/en/` version of the file:
- Make a note whether a translator would be needed to update other languages, or whether it's entirely syntax-based changes
2. Look for any "asides" (note, tip, caution, danger) that are in GitHub markdown style and use our Astro Docs format instead:
```
:::note
Text of note here
:::
```
Full docs: https://contribute.docs.astro.build/reference/custom-components/#aside-component
3. Look for any code snippets and update:
- use the code LANGUAGE, not `diff` to start the code snippet
- use `{ }` to highlight or show diffs (`ins=` and `del=`) for entire lines
- use `" "` to highlight or show diffs (`ins=` and `del=`) for strings (words/phrases)
- delete any `^^^^^` marks
- DOUBLE CHECK LINE NUMBERS IF YOU'VE CHANGED THINGS
- Full instructions here: https://contribute.docs.astro.build/reference/code-samples/
3. Replace any installation instructions with our Package Manager Tabs component:
``````
<PackageManagerTabs>
<Fragment slot="npm">
```shell
# create a new project with npm
npm create astro@latest
```
</Fragment>
<Fragment slot="pnpm">
```shell
# create a new project with pnpm
pnpm create astro@latest
```
</Fragment>
<Fragment slot="yarn">
```shell
# create a new project with yarn
yarn create astro
```
</Fragment>
</PackageManagerTabs>
``````
https://contribute.docs.astro.build/reference/custom-components/#tabs-component
5. Look for places where we might want to use other components like `<Since />` or the `<Badge />` (The badge often shows "external" or "community" for links)