What do you call the process of converting line breaks into html elements?
Posted
by
Ben Lee
on Programmers
See other posts from Programmers
or by Ben Lee
Published on 2012-10-23T19:11:11Z
Indexed on
2012/10/23
23:18 UTC
Read the original article
Hit count: 272
terminology
On sites with user-created content (such as programmers SE) or blogging software back-ends, line breaks entered by the user in the content area are frequently converted into <br>
and/or <p>
tags when rendered on the front-end. For example, this:
A limerick
There once was a man from Nantucket
Who kept all his cash in a bucket.
Might render html like this:
<p>
A limerick
</p>
<p>
There once was a man from Nantucket<br>
Who kept all his cash in a bucket.
</p>
What is the standard name for this process of converting line breaks into html?
© Programmers or respective owner