diff --git a/.faq/FAQ.md b/.faq/FAQ.md
new file mode 100644
index 00000000..4bccdc84
--- /dev/null
+++ b/.faq/FAQ.md
@@ -0,0 +1,20 @@
+
+# Frequently Asked Questions
+
+{%- for question in questions %}
+- [{{ question.title }}](#{{ question.slug }})
+{%- endfor %}
+
+
+{%- for question in questions %}
+
+
+## {{ question.title }}
+
+{{ question.body }}
+
+{%- endfor %}
+
+
+
+Generated by [FAQtory](https://github.com/willmcgugan/faqtory)
diff --git a/.faq/suggest.md b/.faq/suggest.md
new file mode 100644
index 00000000..0a923399
--- /dev/null
+++ b/.faq/suggest.md
@@ -0,0 +1,20 @@
+{%- if questions -%}
+{% if questions|length == 1 %}
+We found the following entry in the [FAQ]({{ faq_url }}) which you may find helpful:
+{%- else %}
+We found the following entries in the [FAQ]({{ faq_url }}) which you may find helpful:
+{%- endif %}
+
+{% for question in questions %}
+- [{{ question.title }}]({{ faq_url }}#{{ question.slug }})
+{%- endfor %}
+
+Feel free to close this issue if you found an answer in the FAQ. Otherwise, please give us a little time to review.
+
+{%- else -%}
+Thank you for your issue. Give us a little time to review it.
+
+PS. You might want to check the [FAQ]({{ faq_url }}) if you haven't done so already.
+{%- endif %}
+
+This is an automated reply, generated by [FAQtory](https://github.com/willmcgugan/faqtory)
diff --git a/FAQ.md b/FAQ.md
new file mode 100644
index 00000000..6cb43f1f
--- /dev/null
+++ b/FAQ.md
@@ -0,0 +1,43 @@
+
+# Frequently Asked Questions
+- [Why does emoji break alignment in a Table or Panel?](#why-does-emoji-break-alignment-in-a-table-or-panel)
+- [Why does content in square brackets disappear?](#why-does-content-in-square-brackets-disappear)
+- [python -m rich.spinner shows extra lines](#python--m-rich.spinner-shows-extra-lines)
+- [Strange colors in console output.](#strange-colors-in-console-output.)
+
+
+## Why does emoji break alignment in a Table or Panel?
+
+Certain emoji take up double space within the terminal. Unfortunately, terminals don't always agree how wide a given character should be.
+
+Rich has no way of knowing how wide a character will be on any given terminal. This can break alignment in containers like Table and Panel, where Rich needs to know the width of the content.
+
+There are also *multiple codepoints* characters, such as country flags, and emoji modifiers, which produce wildly different results across terminal emulators.
+
+Fortunately, most characters will work just fine. But you may have to avoid using the emojis that break alignment. You will get good results if you stick to emoji released on or before version 9 of the Unicode database,
+
+
+## Why does content in square brackets disappear?
+
+Rich will treat text within square brackets as *markup tags*, for instance `"[bold]This is bold[/bold]"`.
+
+If you are printing strings with literally square brackets you can either disable markup, or escape your strings.
+See the docs on [console markup](https://rich.readthedocs.io/en/latest/markup.html) for how to do this.
+
+
+## python -m rich.spinner shows extra lines
+
+The spinner example is know to break on some terminals (Windows in particular).
+
+Some terminals don't display emoji with the correct width, which means Rich can't always align them accurately inside a panel.
+
+
+## Strange colors in console output.
+
+Rich will highlight certain patterns in your output such as numbers, strings, and other objects like IP addresses.
+
+Occasionally this may also highlight parts of your output you didn't intend. See the [docs on highlighting](https://rich.readthedocs.io/en/latest/highlighting.html) for how to disable highlighting.
+
+
+
+Generated by [FAQtory](https://github.com/willmcgugan/faqtory)
diff --git a/faq.yml b/faq.yml
new file mode 100644
index 00000000..9ab9b58f
--- /dev/null
+++ b/faq.yml
@@ -0,0 +1,7 @@
+# FAQtory settings
+
+faq_url: "https://github.com/willmcgugan/faqtory/blob/main/FAQ.md" # Replace this with the URL to your FAQ.md!
+
+questions_path: "./questions" # Where questions should be stored
+output_path: "./FAQ.md" # Where FAQ.md should be generated
+templates_path: ".faq" # Path to templates
diff --git a/questions/README.md b/questions/README.md
new file mode 100644
index 00000000..e733072f
--- /dev/null
+++ b/questions/README.md
@@ -0,0 +1,6 @@
+
+# Questions
+
+Your questions should go in this directory.
+
+Question files should be named with the extension ".question.md".
diff --git a/questions/emoji_broken.question.md b/questions/emoji_broken.question.md
new file mode 100644
index 00000000..44a51921
--- /dev/null
+++ b/questions/emoji_broken.question.md
@@ -0,0 +1,11 @@
+---
+title: "Why does emoji break alignment in a Table or Panel?"
+---
+
+Certain emoji take up double space within the terminal. Unfortunately, terminals don't always agree how wide a given character should be.
+
+Rich has no way of knowing how wide a character will be on any given terminal. This can break alignment in containers like Table and Panel, where Rich needs to know the width of the content.
+
+There are also *multiple codepoints* characters, such as country flags, and emoji modifiers, which produce wildly different results across terminal emulators.
+
+Fortunately, most characters will work just fine. But you may have to avoid using the emojis that break alignment. You will get good results if you stick to emoji released on or before version 9 of the Unicode database,
diff --git a/questions/highlighting_unexpected.question.md b/questions/highlighting_unexpected.question.md
new file mode 100644
index 00000000..958bf3fd
--- /dev/null
+++ b/questions/highlighting_unexpected.question.md
@@ -0,0 +1,9 @@
+---
+title: "Strange colors in console output."
+alt_titles:
+ - "Why are numbers in cyan?"
+---
+
+Rich will highlight certain patterns in your output such as numbers, strings, and other objects like IP addresses.
+
+Occasionally this may also highlight parts of your output you didn't intend. See the [docs on highlighting](https://rich.readthedocs.io/en/latest/highlighting.html) for how to disable highlighting.
diff --git a/questions/rich_spinner.question.md b/questions/rich_spinner.question.md
new file mode 100644
index 00000000..77174635
--- /dev/null
+++ b/questions/rich_spinner.question.md
@@ -0,0 +1,7 @@
+---
+title: "python -m rich.spinner shows extra lines"
+---
+
+The spinner example is know to break on some terminals (Windows in particular).
+
+Some terminals don't display emoji with the correct width, which means Rich can't always align them accurately inside a panel.
diff --git a/questions/square_brackets.question.md b/questions/square_brackets.question.md
new file mode 100644
index 00000000..55c80005
--- /dev/null
+++ b/questions/square_brackets.question.md
@@ -0,0 +1,10 @@
+---
+title: "Why does content in square brackets disappear?"
+alt_titles:
+ - "Can not print a [string]"
+---
+
+Rich will treat text within square brackets as *markup tags*, for instance `"[bold]This is bold[/bold]"`.
+
+If you are printing strings with literally square brackets you can either disable markup, or escape your strings.
+See the docs on [console markup](https://rich.readthedocs.io/en/latest/markup.html) for how to do this.