diff --git a/email.ts b/email.ts index 02c0d04..ef67f6a 100644 --- a/email.ts +++ b/email.ts @@ -49,7 +49,10 @@ export function buildPageSummary(pageUrl: string, pageReport: PageReport) { const linkText = info?.linkText || "Link text unknown"; const breakageReason = info?.reason || "Reason for breaking is unknown"; - listItems += `
  • "${linkText}" - ${broken} (${breakageReason})
  • `; + // Ordinarily, it wouldn't make sense to link to a broken link, but in this case there are a fair number of + // false positives until I iron out the kinks in the system. As such it's much more convenient to have the + // hyperlink present in the email so I can investigate whether or not it is indeed broken. + listItems += `
  • "${linkText}" - ${broken} (${breakageReason})
  • `; } return `
  • ${pageIntro}${buildSummaryLine(pageReport)}

    Broken Links:


  • `;