diff --git a/api/main.py b/api/main.py
index d329b42..3d3942d 100644
--- a/api/main.py
+++ b/api/main.py
@@ -69,8 +69,10 @@ def human(id):
# run a regex to replace all relative links with absolute links. Just doing
# a regex for now since we really don't need to parse everything out then
# re-serialize it for something this simple.
- # ->
- text = re.sub(r'', r'', r.text)
+ #
+ # ⬇️
+ #
+ text = re.sub(r'', r'', r.text)
return Response(text, mimetype='application/json')