vote up 0 vote down star

I want to display HTML in a webpage. I've wrapped in a code block but the last two lines still execute/render. What am I doing wrong?

<pre><code>
div {background: brown;}
div.bluebg {background: blue;}
<div>default brown background</div>
<div class="base">blue background</div>
</code></pre>

The last two lines were wrapped in div tags. I notice stackoverflow strips them out. I don't want to strip them but modify I guess with &lt; and &gt;. Is there a listing of tags that should be modified to render them in a webpage? Is there an online program that can convert these to the above syntax?

flag

48% accept rate
i cant parse your question. you need to provide somewhat more information – Scott Evernden Feb 15 at 23:20
More info please. – Andy Hume Feb 15 at 23:20

3 Answers

vote up 5 vote down check

I do not think [those tags] mean what you think they mean.

<pre> allows you to preserve white space and line feeds. <code> allows you to semantically indicate that code is being displayed on your page. Both have some default styles (such as applying a fixed-width font), but neither one does anything to escape <, >, &, or ", so any unescaped HTML code you put in between those tags is going to be processed as HTML. You'll have to use &lt;, &gt;, &amp;, and &quot;. Here's a page where you can paste in text and have it escaped: http://accessify.com/tools-and-wizards/developer-tools/quick-escape/

link|flag
Thanks on the link. That's what I was looking for. – 4thSpace Feb 16 at 18:04
vote up 3 vote down

You need to replace < with &lt;, > with &gt; and & with &amp; and that's it.

link|flag
vote up 1 vote down

Judging by the contents of your post I assume you're talking about showing code in Markdown on Stack Overflow.

Don't wrap your code in <pre> and <code>, just indent it by 4 spaces, like so:

div {background: brown;}
div.bluebg {background: blue;}
<div>default brown background</div>
<div class="base">blue background</div>

Markdown actually parses HTML (at, least these tags) as you can see. Outside of markdown you'd still have to change <div> to &lt;div&gt; for it to render properly anyway - using code/pree doesn't stop the code from rendering.

link|flag
I only want it to display in stackoverflow so others can see the question. I need to display HTML in a webpage and pre/code isn't working on some tags. Are you saying I will have to use the less/greater than characters for most tags? – 4thSpace Feb 15 at 23:33

Your Answer

Get an OpenID
or

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