From fc6a9a5bcd09397c4b540c25ed320916d6d5a51e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bu=C4=9Fra?= Date: Thu, 10 Jul 2025 04:34:17 +0300 Subject: [PATCH] fix: update code snippet formatting to use backticks for consistency --- src/data/post/astrowind-template-in-depth.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/post/astrowind-template-in-depth.mdx b/src/data/post/astrowind-template-in-depth.mdx index 179b4f9..3f1f1d0 100644 --- a/src/data/post/astrowind-template-in-depth.mdx +++ b/src/data/post/astrowind-template-in-depth.mdx @@ -180,7 +180,7 @@ That's pretty concise and a bit of a head-scratcher to read, but basically what 1. you can reference a slot from a child element of that component and, 1. provide content to the parent component's slot from the child by naming the slot in the child with a `slot=""` property assignment, where the _slot-name_ is the parent's slot. -So, in the example above, the _CallToAction_ component defines the _subtitle_ slot, and the following __ populates the slot with the following content: +So, in the example above, the _CallToAction_ component defines the _subtitle_ slot, and the following `` populates the slot with the following content: ```astro