diff --git a/README.md b/README.md
index 0a28c6a3..11d7379b 100644
--- a/README.md
+++ b/README.md
@@ -124,6 +124,56 @@ It is the default behavior of markdown to wrap every text inside a paragraph. MD
```
+### Slots in MDC components
+
+When using your own components in Markdown (`::my-component ... ::`), **indentation inside the container matters**.
+
+For the renderer to work as expected, it's important that the indentation of the content nested *within* `::my-component ... ::` aligns with the indentation of the `::my-component` line itself.
+
+Consider the following component with a named slot:
+
+```html [Alert.vue]
+
+
`. + +It's recommended to keep `#slotName` and slot content aligned with the opening `::my-component` line (no extra indentation inside the container). + ### Prose Components Prose components are a list of components that will be rendered instead of regular HTML tags. For example, instead of rendering a `` tag, `@nuxtjs/mdc` renders a `
` component. This is useful when you want to add extra features to your markdown files. For example, you can add a `copy` button to your code blocks.