diff --git a/docs/.vuepress/includes/supporters.html b/docs/.vuepress/includes/supporters.html
index ee5deaaa09..2d9eabecd0 100644
--- a/docs/.vuepress/includes/supporters.html
+++ b/docs/.vuepress/includes/supporters.html
@@ -13,61 +13,58 @@
-
-
-
-
-
Our Supporters
-
- The BTCPay Server Project is proudly supported by these entities through the
- BTCPay Server Foundation.
-
-
-
If you'd like to support the project, please visit the donation page.
+
+
Our Supporters
+
+ The BTCPay Server Project is proudly supported by these entities through the
+ BTCPay Server Foundation.
+
+
+
If you'd like to support the project, please visit the donation page.
+
diff --git a/docs/Forms.md b/docs/Forms.md
index 284c149ca5..0293a4e98e 100644
--- a/docs/Forms.md
+++ b/docs/Forms.md
@@ -103,13 +103,3 @@ When the user enters `chocolate` in the promo code field, the invoice amount wil
By default, none of the user input will be shown on the invoice receipt. To do this, we must create a mapping for each field.
* Create a field of type `fieldset`, with name `receiptData`.
* For every field you wish to show in the receipt, create a field of type `mirror`, and set the `Field to mirror` to the field you wish to copy over to the receipt.
-
-## Support
-
-If you have trouble using BTCPay Server, consider joining the [BTCPay Server Mattermost](https://chat.btcpayserver.org) to get help from BTCPay community members.
-
-Only file a [Github issue](https://github.com/btcpayserver/btcpayserver/issues) for technical issues you can't resolve through other channels or feature requests you've validated with other community members.
-
-Please check out our [official website](https://btcpayserver.org/) and [FAQ](./FAQ/README.md#btcpay-frequently-asked-questions-and-common-issues) for more details.
-
-!!!include(supporters.html)!!!
diff --git a/setup-deps.sh b/setup-deps.sh
index b39a9e38d6..3ca9af4f45 100755
--- a/setup-deps.sh
+++ b/setup-deps.sh
@@ -35,7 +35,7 @@ update_external() {
path="${file#${base}}"
[[ $path = "Security.md" ]] && path="SECURITY.md"
[[ $path = "README.md" || $path = "readme.md" || $path = "SECURITY.md" ]] && folder="" || folder="docs/"
- content=$(cat "$file")
+ content=$(cat "$file" | tr -cd '\11\12\15\40-\176')
# add frontmatter to omit edit links for external docs
echo $'---\nexternalRepo: '"$repo"$'\neditLink: '"$edit/$folder$path"$'\n---\n'"$content" > "$file"
}
@@ -423,7 +423,6 @@ cd "$KUKKS_DIR/Plugins/BTCPayServer.Plugins.SideShift"
cp -r README.md "$DOCS_DIR/SideShift"
for file in "$DOCS_DIR"/SideShift/*.md; do
- sed -i 's/[^[:print:]\t]//g' "$file"
update_external "$file" https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.SideShift https://github.com/Kukks/BTCPayServerPlugins/edit/master/Plugins/BTCPayServer.Plugins.SideShift "$DOCS_DIR"/SideShift/
done
@@ -445,7 +444,6 @@ cd "$KUKKS_DIR/Plugins/BTCPayServer.Plugins.DynamicReports"
cp -r README.md "$DOCS_DIR/DynamicReports"
for file in "$DOCS_DIR"/DynamicReports/*.md; do
- sed -i 's/[^[:print:]\t]//g' "$file"
update_external "$file" https://github.com/Kukks/BTCPayServerPlugins/tree/master/Plugins/BTCPayServer.Plugins.DynamicReports https://github.com/Kukks/BTCPayServerPlugins/edit/master/Plugins/BTCPayServer.Plugins.DynamicReports "$DOCS_DIR"/DynamicReports/
done
@@ -467,7 +465,6 @@ cd "$ROCKSTAR_DIR/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll"
cp -r README.md "$DOCS_DIR/Payroll"
for file in "$DOCS_DIR"/Payroll/*.md; do
- sed -i 's/[^[:print:]\t]//g' "$file"
update_external "$file" https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/tree/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll https://github.com/rockstardev/BTCPayServerPlugins.RockstarDev/edit/master/Plugins/BTCPayServer.RockstarDev.Plugins.Payroll "$DOCS_DIR"/Payroll/
done