From 9c2c8150cd53a5e7181a621672b99aaa95a4dd0e Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Wed, 14 Jan 2026 17:51:35 +0000 Subject: [PATCH 1/2] make the feedback actually link to the page being mentioned, this has been bugging me for ages --- middleware/functions/feedback.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleware/functions/feedback.ts b/middleware/functions/feedback.ts index 4b3e2b5cd..29b6cd78d 100644 --- a/middleware/functions/feedback.ts +++ b/middleware/functions/feedback.ts @@ -300,7 +300,7 @@ ${cleanedContact ? `\n**GitHub User:** @${cleanedContact}` : ""} const body = ` ## Documentation Feedback -**Path:** ${path} +**Path:** https://docs.deno.com${path} **Helpful:** ${sentiment === "yes" ? "Yes ✅" : "No ❌"} ${comment ? `**Feedback:**\n> ${comment}` : "No additional comment provided"} From c87627f7074fb565c793c264171f8481710d9dcd Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Wed, 14 Jan 2026 17:53:27 +0000 Subject: [PATCH 2/2] add link --- middleware/functions/feedback.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleware/functions/feedback.ts b/middleware/functions/feedback.ts index 29b6cd78d..546804a88 100644 --- a/middleware/functions/feedback.ts +++ b/middleware/functions/feedback.ts @@ -300,7 +300,7 @@ ${cleanedContact ? `\n**GitHub User:** @${cleanedContact}` : ""} const body = ` ## Documentation Feedback -**Path:** https://docs.deno.com${path} +**Path:** [${path}](https://docs.deno.com${path}) **Helpful:** ${sentiment === "yes" ? "Yes ✅" : "No ❌"} ${comment ? `**Feedback:**\n> ${comment}` : "No additional comment provided"}