Skip to content

Instantly share code, notes, and snippets.

@che-wf
Last active April 22, 2016 13:35
Show Gist options
  • Select an option

  • Save che-wf/959a15b92554a2b56a58 to your computer and use it in GitHub Desktop.

Select an option

Save che-wf/959a15b92554a2b56a58 to your computer and use it in GitHub Desktop.
Superscript all Trademark, Registered, and Copyright scripts (unless already superscripted)
$('body :not(script,sup)').contents().filter(function() {
return this.nodeType === 3;
}).replaceWith(function() {
return this.nodeValue.replace(/[™®©]/g, '$&');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment