docs
docs copied to clipboard
Astro documentation
### 📚 Subject area/topic Content collection - Rendering content to html ### 📋 Suggested page https://docs.astro.build/en/guides/content-collections/#rendering-content-to-html ### 📋 General description or bullet points (if proposing new content) The current documentation...
#### Description (required) [Zed](https://zed.dev/) is a newly open sourced code editor that has recently added built-in support for Astro and is gaining traction as the repo is nearing 30k stars....
#### Description Update src/i18n/de/nav.ts according to src/i18n/en/nav.ts, addressing outdated content flagged on the Translation Tracker.
### 📚 Subject area/topic MDX custom components ### 📋 Page(s) affected (or suggested, for new content) https://docs.astro.build/en/guides/markdown-content/ ### 📋 Description of content that is out-of-date or incorrect I’ve been trying...
### 📚 Subject area/topic Recipes ### 📋 Page(s) affected (or suggested, for new content) [Dynamically Import Images](https://docs.astro.build/en/recipes/dynamically-importing-images/) ### 📋 Description of content that is out-of-date or incorrect # Error The...
#### Description (required) Updates the integrations reference, adding `injectDts` and `codegenDir` #### Related issues & labels (optional) - Suggested label: `minor-release` #### For Astro version: `4.5.0`. See astro PR https://github.com/withastro/astro/pull/9952.
[The docs about the Code component](https://docs.astro.build/en/reference/api-reference/#code-) give examples of how you could use it in an Astro file (.astro): ```astro --- import { Code } from 'astro:components'; --- will be...
### 📚 Subject area/topic Docker setup ### 📋 Page(s) affected (or suggested, for new content) https://docs.astro.build/en/recipes/docker/ ### 📋 Description of content that is out-of-date or incorrect I don't know, it...
### 📚 Subject area/topic RSS ### 📋 Page(s) affected (or suggested, for new content) https://docs.astro.build/en/guides/rss/ ### 📋 Description of content that is out-of-date or incorrect Following the guide for adding...
Proposed fix: ``` --- import { CollectionEntry, getCollection } from "astro:content"; // 1. Generate a new path for every collection entry export async function getStaticPaths() { const blogEntries = await...