PDA

View Full Version : Debugging files


CW.Allen-Poole
07-26-2008, 09:10 PM
There are two articles ready for approval on the same topic. I was wondering a couple of things:

What can I do to prevent HTML from showing up in the code?
If someone is continuing to write about different aspects of the same topic, is there a best practices as far as making things multiple pages?

Jesse
08-01-2008, 07:36 PM
On point 1, the nature of the HTML determines what you need to do. If possible, try putting a space into the code, e.g.
<br>
// VS
<br >
// OR
<br/>

CW.Allen-Poole
08-01-2008, 09:42 PM
On point 1, the nature of the HTML determines what you need to do. If possible, try putting a space into the code, e.g.
<br>
// VS
<br >
// OR
<br/>

Thank you very much sir.