Converts your text into HTML.
Simply wraps paragraph tags around your plain text paragraphs and in doing so makes your text come out well-formatted when you put it on your website.
Generating HTML from text is as easy as using this JavaScript code:
> "<p>" + "my example text".replace(/[\n]+/gi,"\n").split("\n").join("</p>\n<p>") + "</p>";
You can also do the reverse conversion (generate text from HTML) by putting your HTML in the other box.
↓ Read more... ↓