I am creating a blogging functionality to my website running on a cms.
My requirement is this:
When a person has written an article, he must automatically provided with 'suggested tags'. These words must come from the article. How can I implement this functionality?
I thought some ideas. Like:
- Suggest words which are the longest. Using this, I can filter out 'a', 'of', 'my' etc but not 'because'.
- Create a blacklist of words. But I couldn't find any such ready-made list and creating such a list will take a very long time.
So, any other ideas?