Question
Using the WYSIWYG editor destroys the leading spaces in my published source code. I have enclosed the source code in html-tags like this:
<BLOCKQUOTE>
<VERBATIM>
if( editor = used ) {
destroyLeadingSpaces();
}
</VERBATIM>
</BLOCKQUOTE>
How can I fix this problem?
Environment
--
RinkeColen - 01 Apr 2008
Answer
If you answer a question - or have a question you asked answered by someone - please remember to edit the page and set the status to answered. The status is in a drop-down list below the edit box.
VERBATIM
must always be written in lowercase. If you replace VERBATIM by verbatim in your example, it works. HTML tags like blockquote are case-insensitive, but non-HTML, twiki specific tags (nop, verbatim, ... must be lower case)
--
ColasNahaboo - 01 Apr 2008