Skip to content

Instantly share code, notes, and snippets.

@samermurad
Created September 3, 2021 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samermurad/5b1262e7622cc6683251fa03676e816f to your computer and use it in GitHub Desktop.
Save samermurad/5b1262e7622cc6683251fa03676e816f to your computer and use it in GitHub Desktop.
Fixes the Links to Carbon.now.sh
function fixMediumLink(link) {
const text = document.createElement('input')
text.value = encodeURI(link.replace('sh/embed', 'sh').replace(/sh\/?/, 'sh/embed'))
text.select();
document.execCommand("copy");
return text.value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment