Hello, I have made my own custom little blog and well, I realized it was ignoring whitespace within code tags. Well, the generated code is like
<div class="codebody">
Mycode<br/>
other indented code<br/>
othercode<br/>
</div>
my codebody class looks like
.codebody {
background-color: #FFFFFF;
font-family: Courier new, courier, mono;
font-size: 12px;
color: #006600;
border: 1px solid #BFBFBF;
}
Well, how can I make it so that indentation will show up in code tags, but it won't add double-line breaks because of the <br/>\n
?