chore: escape HTML entity in route test URL display (#17592)
This commit is contained in:
parent
47ae077dee
commit
99ee9e7030
|
|
@ -41,7 +41,7 @@ export default async function test({ github, context, core }, baseUrl, routes, n
|
|||
|
||||
let routeFeedback = `
|
||||
<details>
|
||||
<summary><a href="${lks}">${lks}</a> - ${success ? 'Success ✔️' : '<b>Failed ❌</b>'}</summary>
|
||||
<summary><a href="${lks}">${lks.replaceAll('&', '&')}</a> - ${success ? 'Success ✔️' : '<b>Failed ❌</b>'}</summary>
|
||||
|
||||
\`\`\`${success ? 'rss' : ''}`;
|
||||
routeFeedback += `
|
||||
|
|
|
|||
Loading…
Reference in New Issue