We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa9a6f commit 4256623Copy full SHA for 4256623
omnigirl_leaderboard.html
@@ -232,8 +232,13 @@ <h3>🙏 Acknowledgements</h3>
232
.forEach((r, i) => {
233
const medal = i === 0 ? '🥇 ' : i === 1 ? '🥈 '
234
: i === 2 ? '🥉 ' : '';
235
- const orgIcon = r.org ? `<img src="${r.org}" style="height:1.5em;">` : '-';
236
- const siteLink = r.site ? `<a href="${r.site}" target="_blank">🔗</a>` : '-';
+
+ const orgUrl = (r.org || '').replace(/&/g, '&');
237
+ const siteUrl = (r.site || '').replace(/&/g, '&');
238
239
+ const orgIcon = orgUrl ? `<img src="${orgUrl}" style="height:1.5em;">` : '-';
240
+ const siteLink = siteUrl ? `<a href="${siteUrl}" target="_blank">🔗</a>` : '-';
241
242
243
tbody.insertAdjacentHTML('beforeend', `
244
<tr>
0 commit comments