Public
Back
Version 7
5/15/2024
function getHREF(mod) {
const url = new URL(mod);
return `https://val.town${url.pathname}`;
}
export default function GetBadgeHTML(url) {
const href = getHREF(url);
return `
<pre>${href}</pre>
<a href="${href}">
<img src="https://jxnblk-valtownbadgesvg.web.val.run/" widht="160" height="48">
</a>
`;
}
Updated: May 24, 2024