diff --git a/site/content/faq/450-how-do-i-document-my-components.md b/site/content/faq/450-how-do-i-document-my-components.md
new file mode 100644
index 000000000000..78177abd5498
--- /dev/null
+++ b/site/content/faq/450-how-do-i-document-my-components.md
@@ -0,0 +1,32 @@
+---
+question: How do I document my components?
+---
+
+In editors which use the Svelte Language Server you can document Components, functions and exports using specially formatted comments.
+
+````svelte
+
+
+
+
+
+ Hello, {name}
+
+
+````
+
+Note: The `@component` is necessary in the HTML comment which describes your component.