Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
45d79c4
Blog: Running DDEV in CI with WarpBuild
deviantintegral Jan 16, 2026
388ffb9
docs: fix Resources listed as a valid category
deviantintegral Jan 16, 2026
c75203a
fix: frontmatter validation
deviantintegral Jan 16, 2026
e696a29
chore: typo fixes
deviantintegral Jan 27, 2026
92639b4
chore: typo fixes
deviantintegral Jan 27, 2026
e33031c
docs: rewrite example to be a single workflow
deviantintegral Jan 27, 2026
f3d1020
style: copypaste
deviantintegral Jan 27, 2026
95df51f
style: lines
deviantintegral Jan 27, 2026
c51392f
fix: typos
deviantintegral Jan 27, 2026
aa2e94e
docs: improve intro sentence
deviantintegral Jan 27, 2026
4a0c7d1
fix: missing runs-on
deviantintegral Jan 27, 2026
7d8e235
fix: inputs should be needs outputs
deviantintegral Jan 27, 2026
f44cc5c
prettier
stasadev Jan 28, 2026
b49d9d0
fix: grammar
deviantintegral Jan 30, 2026
b0a6a8d
feat: support rendering mermaid
deviantintegral Feb 20, 2026
eb05b07
docs: add a flowchart of the snapshot workflow
deviantintegral Feb 20, 2026
ac61cc1
fix: cropping of image in listing page
deviantintegral Feb 20, 2026
50a0c24
fix: refactoring from removing separate actions
deviantintegral Feb 20, 2026
0a1d42a
chore: bump to latest ddev stable
deviantintegral Feb 20, 2026
e5900f8
chore: bump dates
deviantintegral Feb 20, 2026
d8056d1
docs: link to the example repository
deviantintegral Feb 20, 2026
5703e5e
chore: style fixes
deviantintegral Feb 20, 2026
6615337
use astro-mermaid
stasadev Feb 23, 2026
8cbbab4
update pub date and summary
stasadev Feb 23, 2026
d2ecd49
prettier
stasadev Feb 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ Choose whichever categories apply, with special attention to the first because i
- _Newsletters_ (monthly newsletters)
- _Podcasts_ (podcasts)
- _Releases_ (new features, bug fixes, etc.)
- _Resources_ (links to external resources)
- _Showcase_ (showcase of DDEV projects)
- _Tutorials_ (tutorials)
- _Videos_ (videos)
Expand Down
9 changes: 8 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import rehypeUnwrapImages from "rehype-unwrap-images"
import remarkDirective from "remark-directive"
import remarkGfm from "remark-gfm"
import remarkToc from "remark-toc"
import mermaid from "astro-mermaid"
import robotsTxt from "astro-robots-txt"
import searchIndex from "./src/lib/search-index.js"
import sitemap from "@astrojs/sitemap"
Expand Down Expand Up @@ -57,9 +58,15 @@ export default defineConfig({
}),
downloadDdevRedirects(),
prefetch(),
mermaid({
autoTheme: true,
}),
],
markdown: {
syntaxHighlight: "shiki",
syntaxHighlight: {
type: "shiki",
excludeLangs: ["mermaid", "math"],
},
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
shikiConfig: {
themes: SHIKI_THEMES,
Expand Down
Loading
Loading