How to Make a Parse Tool on Your Own Blog - Wayourlife

How to Make a Parse Tool on Your Own Blog





For those of us who are involved in the Blogger world, we certainly cannot be separated from HTML code names. At a minimum understand it a little to change the navigation menu so it is more efficient in its placement. Even if we get involved in playing Adsense, surely we must understand a little bit about the HTML script code.

For this reason there are benefits if we have a parse tools page on the blog itself. Because, we are required to parse HTML scripts, we can simply enter the parse tools page on the blog page itself, without having to search for a parse tool provider site, just to parse the HTML code.

1. copy the script code below.
<script type="text/javascript"> function convert(){var ele1 = document.getElementById("somewhere");var replaced;replaced = ele1.value;replaced = replaced.replace(/&/ig, "&amp;");replaced = replaced.replace(/</ig, "&lt;");replaced = replaced.replace(/>/ig, "&gt;");replaced = replaced.replace(/"/ig, "&quot;");replaced = replaced.replace(/&#177;/ig, "&plusmn;");replaced = replaced.replace(/&#169;/ig, "&copy;");replaced = replaced.replace(/&#174;/ig, "&reg;");replaced = replaced.replace(/ya'll/ig, "ya'll");ele1.value = replaced;} </script><br /> <table style="margin: 0px auto; padding: 5px 0; width: 100%;"><tbody> <tr><td><textarea id="somewhere" style="background: none 0% 0% repeat scroll rgb(248 , 248 , 248); border: 2px solid rgb(51, 153, 255); height: 250px; margin: 0px auto; padding: 5px 0; text-decoration: none; width: 100%;"></textarea> <div> <span class="Apple-style-span" style="font-family: &quot;trebuchet ms&quot;; font-size: x-small; line-height: 20px;">HTML Parser Tool |&nbsp;Webmaster |&nbsp;<a href="https://www.watpedia.com/" style="color: #181818; text-decoration: none;">Blogger</a></span></div> <input 5px="" onclick="convert();" padding:="" style="float: right;" type="button" value="Parse HTML" /></td></tr> </tbody></table> </div>

2. Create a new page or entry if you want to publish this tool. And choose HTML mode (not Compose). Then enter the script code into the post / page HTML mode (not Compose) that we have opened. Then Save / Publish!...Done.

Add your comment