Skip to content

Instantly share code, notes, and snippets.

@serkanserttop
Created April 29, 2014 22:28
Show Gist options
  • Save serkanserttop/a69b9ad9b03d4570f3d7 to your computer and use it in GitHub Desktop.
Save serkanserttop/a69b9ad9b03d4570f3d7 to your computer and use it in GitHub Desktop.
Turns text hrefs into actual links and appends as a new list - m202
var hrefs = $('.main-article > .wiki-article > pre > code').text().split('\n'), links = [], i = 0;
for(i; i < hrefs.length; i++){
links.push('<a href="' + hrefs[i] + '">' + hrefs[i] + '</a>');
}
$('.main-article > .wiki-article').append(links.join('<br>'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment