In Content Management System like Joomla and Wordpress Simple Tags Plugins is use for AutoLink. It Search the post any words like category name and make it a link to that category.
For Example - In post there is a category name "abc" , Simple Tags Will find the "abc" in post and make it link to abc category
Here i am going to tell you how you can introduce Autolink Script in Blogger
steps- 1.Open template in xml editor.
2. Add this line before </head>
<script src="https://sites.google.com/site/dtcrunch/autotag.js" type="text/javascript"></script>
3. Find the line <b:if cond='data:blog.pageType == "item"'>
and look down ,you will see this code :
<p> <data:post.body/> </p>
replace it with
<p> <div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
highlightSearchTerms('word',true,'http://yousitename.blogspot.com','summary<data:post.id/>');
highlightSearchTerms('word',true,'http://yoursitename.blogspot.com','summary<data:post.id/>');
</script>
</p>
take a look at the texts in bold . In this text ,"word" and "word" is the text that script will find to add link , "http://yoursitename.blogspot.com" is the link .
You can add more anchor text and link with this structure
highlightSearchTerms('text you want to add link',true,'link','summary<data:post.id/>');
The script will find "text you want to add link" in your post and place a link "link" on this text .
This script is not as good as SimpleTags because SimpleTags using PHP and server resource for finding text and make link .Using this script you have to add text and link manually . But I think it's more flexible for you ,because you can use this script for advertising like Textlinkads ,search the text and link to advertiser .
I hope this script helpful to you . Feel free to comment here.
For Example - In post there is a category name "abc" , Simple Tags Will find the "abc" in post and make it link to abc category
Here i am going to tell you how you can introduce Autolink Script in Blogger
steps- 1.Open template in xml editor.
2. Add this line before </head>
<script src="https://sites.google.com/site/dtcrunch/autotag.js" type="text/javascript"></script>
3. Find the line <b:if cond='data:blog.pageType == "item"'>
and look down ,you will see this code :
<p> <data:post.body/> </p>
replace it with
<p> <div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
highlightSearchTerms('word',true,'http://yousitename.blogspot.com','summary<data:post.id/>');
highlightSearchTerms('word',true,'http://yoursitename.blogspot.com','summary<data:post.id/>');
</script>
</p>
take a look at the texts in bold . In this text ,"word" and "word" is the text that script will find to add link , "http://yoursitename.blogspot.com" is the link .
You can add more anchor text and link with this structure
highlightSearchTerms('text you want to add link',true,'link','summary<data:post.id/>');
The script will find "text you want to add link" in your post and place a link "link" on this text .
This script is not as good as SimpleTags because SimpleTags using PHP and server resource for finding text and make link .Using this script you have to add text and link manually . But I think it's more flexible for you ,because you can use this script for advertising like Textlinkads ,search the text and link to advertiser .
I hope this script helpful to you . Feel free to comment here.