Converts your HTML into text.
It's a simple online tool that removes all HTML tags from your text to produce plain text paragraphs. This might be useful if you want to convert your HTML into a different format.
Generating plain text from HTML is as easy as using this JavaScript code:
> my_html.replace(/( |<([^>]+)>)/ig, "");
You can also do the reverse conversion (generate HTML from text) by putting your plain text in the other box.
↓ Read more... ↓