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