diff --git a/source/pages/supporters.md b/source/pages/supporters.md
index eb56b794..7bfeebb2 100644
--- a/source/pages/supporters.md
+++ b/source/pages/supporters.md
@@ -72,10 +72,6 @@ None -->
-
-
@@ -84,10 +80,6 @@ None -->
-
-
@@ -100,6 +92,10 @@ None -->
+
+
## Silver sponsor
[$100/month](https://www.patreon.com/bePatron?c=95723&rid=1917312)
@@ -424,6 +420,8 @@ I'm forever thankful to these people and companies that have previously supporte
- [Ryan Atkinson](https://github.com/ryanatkn)
- [Blai Pratdesaba](https://github.com/blaiprat)
- [Ryan Chartrand](https://github.com/ryanchartrand)
+- [Strapi](https://strapi.io)
+- [Retool](https://retool.com)
---
diff --git a/source/utils/apps.js b/source/utils/apps.js
index cbb11280..305b7808 100644
--- a/source/utils/apps.js
+++ b/source/utils/apps.js
@@ -1,3 +1,4 @@
+import {markdown} from '@astropub/md';
import {getCollection} from 'astro:content';
const normalizeApps = async app => {
@@ -58,6 +59,8 @@ const normalizeApps = async app => {
return object;
});
+ const feedbackNote = await markdown(data.feedbackNote);
+
return {
...data,
pubDate,
@@ -77,6 +80,7 @@ const normalizeApps = async app => {
olderVersionsUrl: data.repoUrl ? `${data.repoUrl}#download` : `/${slug}#older-versions`,
...(data.appStoreId && {appStoreUrl: `https://apps.apple.com/app/id${data.appStoreId}`}),
...(data.setappId && {setappUrl: `https://go.setapp.com/stp181?refAppID=${data.setappId}&utm_medium=vendor_program&utm_content=button`}),
+ feedbackNote,
};
};