• Please review our updated Terms and Rules here

I don't want to complain, but....

SwedaGuy

Experienced Member
Joined
Feb 26, 2007
Messages
306
Location
Waupun, WI
...why can't I put more than one space in a row when posting?

For example, I chose a fixed font and typed up a section of source code, using spaces for the appropriate indents (Tab leaves the edit box), but when the post is saved the spaces disappear and everything starts from the left margin...

Anything I can do about it?
 
Use the formatting features. Enclose fixed space stuff in code blocks.
{code}
hello
hello
hello
{/code}

comes out like:

Code:
    hello
     hello
      hello

But use [ not { and ] not }
 
There's also a WYSIWYG interface for the comment box that has a nice text formatting bar with word processor style buttons for code and quoting. Look for it in your User Control Panel, its a nice feature.

EDIT:

At the top: Quick Links > Edit Options > and scroll to the very bottom. The last box lets you select from quick, standard and enhanced WYSIWYG for the comment interface.
 
Last edited:
For what it is worth, the concatenation of multiple spaces is not due to the forum software, but how all (?) browsers implement HTML - it may even be in a spec somewhere that several space characters in a row should be treated as one unless special conditions like typewriter/preformatted text occurs.
 
I always kinda assumed it was a lameness filter of some kind that prevented someone from making a mile long post or something to that effect.
 
Back
Top