glitch = (repo) => {
if(repo.includes('https://github.com/'))
repo = repo.replace('https://github.com/', '').replace(/\/$/, '')
const [orgname, repoX] = repo.split('/')
return html`
<a href="https://glitch.com/edit/#!/import/github/${orgname}/${repoX}">
<img
src="https://cdn.glitch.com/2703baf2-b643-4da7-ab91-7ee2a2d00b5b%2Fremix-button.svg"
alt="Remix on Glitch" />
</a>`
}