Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there an HTML tag that will display it's contents as a text node?
Example:
<tag><img src="pics/man.jpg"></tag>
This should be displayed like the following in a browser:

<tag><img src="pics/man.jpg"></tag>
share|improve this question

3 Answers

up vote 1 down vote accepted

Actually, HTML does provide such a tag. It's <xmp>...</xmp>

http://www.associatedcontent.com/article/473699/how_to_display_html_on_a_website_without.html?cat=59

What's the catch? Not every browser supports xmp. It's a deprecated tag, no longer in the "standard" version of HTML. Some browsers support it, but others don't. If you try to use an xmp tag to display some HTML and a user with an unsupported browser comes to your site, he or she won't be able to see the code.

share|improve this answer
Excelent, Thank you! – Web_Designer Mar 15 '11 at 20:43

How about using the pre tag?

<pre><tag><img src="pics/man.jpg"></tag> </pre>
share|improve this answer
Doesn't seem to work here: jsfiddle.net/Jaybles/9vzLR – Dutchie432 Mar 15 '11 at 20:01
Sorry, but the <pre> tag doesn't work. – Web_Designer Mar 15 '11 at 20:42
<pre> essentially just leaves whitespace (including line breaks) intact and usually switches to a fixed width font: w3.org/TR/html401/struct/text.html#edef-PRE – mu is too short Mar 16 '11 at 0:49

No, there is not. XML and therefore XHTML let you write the following:

<![CDATA[
<tag><img src="pics/man.jpg"></tag>
]]>

but HTML does not allow that.

However, replacing all occurrences of < with &lt; and replacing all occurrences of & with &amp; should do the trick.

share|improve this answer
I do use XHTML, but when I pasted your code in the body section of my document it wasn't displayed properly. – Web_Designer Mar 15 '11 at 20:00
Well, I don't think any browser parses XHTML. They all parse HTML :) – nes1983 Mar 16 '11 at 1:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.