Skip to content

Instantly share code, notes, and snippets.

@Glench
Created January 12, 2017 20:10
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 Glench/3120fce73ab6deb9a90a59070f6bc30e to your computer and use it in GitHub Desktop.
Save Glench/3120fce73ab6deb9a90a59070f6bc30e to your computer and use it in GitHub Desktop.
Add wikipedia links to search results on Nutrimatic
document.querySelectorAll('span').forEach(function(span){
var term = span.innerText;
var url = 'https://en.wikipedia.org/w/index.php?title=Special:Search&search='+ term.replace(/\s/g,'+')
span.innerHTML = '<a target="_blank" href="'+ url +'">'+ term +'</a>'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment