Parse Adsense Code for Blogger Templates

By | 9:43 AM Leave a Comment
What does "parsing" mean? Well in simple words some characters break your blogger template if they are used incorrectly. So if you want to insert Adsense ads in your blog, by editing the template, you will probably get an error when you try to save the template.

This happens because the HTML tags used in adsense code (<, >, \, ', &) are not allowed inside the template. Parsing the template means that those tag characters will be converted to plaint text, so that they are recognized by blogger.
This modification is Aproved by Adsense Rules, you don't actually modify any part of the code, you just convert the tags.
Also, this method works with other Java Scripts that will break your template giving the same error.

Paste your adsense code here to parse it






After you clicked on "Parse" button just copy the converted code in your template.

What actually happened is just that some characters (the HTML tags) were replaced:
  • "<" with "&lt;"
  • ">" with "&gt;"
  • "\"" with "&quot;"
  • " ' " with "&#039;"
  • "&" with "&amp;"

0 comments:

Post a Comment