How to Install HTML Parser Tool in blogger
If you want to install an HTML parser tool in your Blogger blog, you can follow the steps below:
Go to the HTML parser tool website you want to use and copy the code for the tool.
Go to your Blogger dashboard and click on the "Layout" option.
In the "Layout" section, click on "Add a Gadget" where you want to add the tool. For example, you can add it in the sidebar or footer section.
In the pop-up window, scroll down and click on "HTML/Javascript".
Paste the code for the HTML parser tool in the "Content" box.
Click on the "Save" button and then click on the "Save arrangement" button.
Preview your blog to see the tool installed on your blog.
That's it! You have successfully installed an HTML parser tool in your Blogger blog. You can repeat these steps to install any other HTML parser tool you want to use.
Read More: Sundar Pichai Biography
<textarea id="codes" placeholder="Taruh script disini kemudian klik 'Parse'. Untuk parse script baru, klik 'Bersihkan'" spellcheck="false"></textarea><div class="button-group"> <center>
<span class="Apple-style-span" style="font-family: "trebuchet ms"; font-size: x-small; line-height: 20px;">Alat Parse HTML oleh <a href="http://www.tongkolpedia.com/" style="color: #2980b9; text-decoration: none;">TongkolPedia</a></span></center><button id="convert" onclick="cdConvert();this.disabled = true;">Parse</button><button onclick="cdClear();">Bersihkan</button></div> <ul id="wrapin"> <li><input checked="true" id="opt1" type="checkbox" />Konversi <code>&</code> menjadi <code>&amp;</code></li><li><input id="opt4" type="checkbox" />Konversi <code>"</code> menjadi <code>&quot;</code></li><li><input checked="true" id="opt2" type="checkbox" />Konversi <code><</code> menjadi <code>&lt;</code></li> <li><input checked="true" id="opt3" type="checkbox" />Konversi <code>></code> menjadi <code>&gt;</code></li> <li><input id="opt5" type="checkbox" />Konversi <code>'</code> menjadi <code>&#039;</code></li> </ul> <style type="text/css">button,button[disabled]:active{border: none;padding: 5px 12px;color: #fff;background-color: #0ea6d8;cursor: pointer;font-size: 13px;margin: 0 10px;line-height: 23px;border-radius: 3px;transition: all 0.3s ease-in-out;}code{font-family:Consolas,Monaco,'Andale Mono','Courier New',Courier,Monospace;color:#2a5ead;font-size:13px;padding:2px 4px;color:#d14;} #codes{font:13px 'Courier New',Monospace;border:1px solid #CCCCCC;width:550px;height:250px;margin:0 auto;display:block;background-color:#f2f2f2;color:#333;padding:15px;} .button-group{margin:0 auto 0;text-align:center} button:active{background:#3f92e1;} button[disabled],button[disabled]:active{background:#3f92e1;}opt3 = document.getElementById('opt3'),#opt1,#opt2,#opt3,#opt4,#opt5{display:inline-block;margin-right:10px;} </style> <script type="text/javascript"> function cdClear() { var wtarea = document.getElementById('codes'); wtarea.value = ''; wtarea.focus(); document.getElementById('convert').disabled = false; } function cdConvert() { var ctarea = document.getElementById('codes'), cv = ctarea.value, opt1 = document.getElementById('opt1'), opt2 = document.getElementById('opt2'),</script>opt4 = document.getElementById('opt4'), opt5 = document.getElementById('opt5'); cv = cv.replace(/t/g, " "); if (opt1.checked) cv = cv.replace(/&/g, "&"); if (opt2.checked) cv = cv.replace(/</g, "<"); if (opt3.checked) cv = cv.replace(/>/g, ">"); if (opt4.checked) cv = cv.replace(/"/g, """); if (opt5.checked) cv = cv.replace(/'/g, "'"); ctarea.value = cv; ctarea.focus(); ctarea.select();};
0 Comments