Skip to content

Instantly share code, notes, and snippets.

@timneutkens
Created July 15, 2016 07:31
Show Gist options
  • Save timneutkens/f53425dcac9453c3566e51956bad78ff to your computer and use it in GitHub Desktop.
Save timneutkens/f53425dcac9453c3566e51956bad78ff to your computer and use it in GitHub Desktop.
Find typekit fonts. Run this in your console.
$('html').attr('class')
.split(' ')
.filter( function (word) {
return word.match(/wf-(.*)-active/g); }
)
.forEach( function (font) {
console.log(font.replace(/wf-|-active/g, ''))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment