Posts

Showing posts with the label keyword

Auto convert keywords into links

Image
Clash Royale CLAN TAG #URR8PPP Auto convert keywords into links Is there a simple way to auto-convert keywords on article pages into internal hyperlinks? Maybe using a text file with a list of all keywords i want to auto convert, so that any occurance of those keywords in an article page are automatically converted into links? First occurance of any keyword only. This is for a simple static html site. Thanks for any help. <script type="text/javascript"> var searchFor = 'revolution'; // replace with search phrase var linkTo = 'revolution.html'; // replace with URL var caseSensitive = false; // set to true or false (without quotes) // do not change script below this line var content = document.getElementsByTagName('body')[0]; var flag = caseSensitive ? '' : 'i'; var pattern = new RegExp("\s(?!</a>)(" + searchFor + "\b)", "g" + flag); content.innerHTML = content.in...