How to remove automatic generated tag in Home page

On archive pages like a blog home page the the_excerpt() is used normally. As the name says it shows just a snippet from your post.

Most content filters are not applied to the excerpt, they work on the_content() only.

Fix: change your template, replace the_excerpt() with the_content() in archive pages.