diff --git a/packages/webawesome/docs/docs/index.md b/packages/webawesome/docs/docs/index.md
index bf1a97094..530f1909b 100644
--- a/packages/webawesome/docs/docs/index.md
+++ b/packages/webawesome/docs/docs/index.md
@@ -46,6 +46,18 @@ Font Awesome users can set their kit code to unlock Font Awesome Pro icons. You
---
+{# This looks weird, but without it, markdownItAttrs flags the raw calls incorrectly. #}
+
+{%- raw -%}
+ {% if currentUser.hasPro %}
+
+ {% include "server/pro-setup.njk" ignore missing %}
+
+ {% endif %}
+{% endraw %}
+
+
+
## Advanced Setup
The autoloader is the easiest way to use Web Awesome, but different projects (or your own preferences!) may require different installation methods.
diff --git a/packages/webawesome/scripts/docs.js b/packages/webawesome/scripts/docs.js
index 94e93217d..55fd5b388 100644
--- a/packages/webawesome/scripts/docs.js
+++ b/packages/webawesome/scripts/docs.js
@@ -147,6 +147,8 @@ export async function generateDocs(options = {}) {
} catch (error) {
console.warn = originalWarn;
+ console.error('\n\n' + chalk.red(error) + '\n');
+
if (spinner) {
spinner.fail(chalk.red(`Error while writing the docs.`));
} else {