HTML help - how to interpret text literally

S

Suk

Hi

I've seen some HTML tag you can use such that it will display text you
enclose in them litereally rather than interpret as html

For example
<tag>
<b>Some Text</b>
</tag>

Would be displayed exactly as written rather than in bold. I've
forgotten what this tag is!!
Does anyone know? I want to be able to display text on a web page
literally without it being interpreted as HTML
 
B

Brian Wakem

Suk said:
Hi

I've seen some HTML tag you can use such that it will display text you
enclose in them litereally rather than interpret as html

For example
<tag>
<b>Some Text</b>
</tag>

Would be displayed exactly as written rather than in bold. I've
forgotten what this tag is!!
Does anyone know? I want to be able to display text on a web page
literally without it being interpreted as HTML


This is perl newsgroup so you'll get a perl answer.

use HTML::Entities;

my $string = <<HERE;
<tag>
<b>Some Text</b>
</tag>
HERE

print encode_entities($string);
 
J

John Bokma

Suk said:
Hi

I've seen some HTML tag you can use such that it will display text you
enclose in them litereally rather than interpret as html

For example
<tag>
<b>Some Text</b>
</tag>

Would be displayed exactly as written rather than in bold. I've
forgotten what this tag is!!
Does anyone know? I want to be able to display text on a web page
literally without it being interpreted as HTML

Since this a group on Perl, I give you one hint the Perl way:

s/</&lt;/g;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,014
Latest member
BiancaFix3

Latest Threads

Top