Skip to content

Instantly share code, notes, and snippets.

@rsinger
Created November 5, 2010 16:12
Show Gist options
  • Save rsinger/664376 to your computer and use it in GitHub Desktop.
Save rsinger/664376 to your computer and use it in GitHub Desktop.
javascript:
(function(){
if(document.URL.match(/^http:\/\/dbpedia\.org\//)) {
document.location = document.URL.replace("http://dbpedia.org/page/","http://en.wikipedia.org/wiki/");
} else if (document.URL.match(/^http:\/\/en.wikipedia\.org\/wiki/)) {
document.location = document.URL.replace("http://en.wikipedia.org/wiki/", "http://dbpedia.org/page/");
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment