I'm task to create a Console Output function in Cander's VBForums extension. Sample output would be

javac -d ../build/classes HelloWorld.java
java HelloWorld


I'm having trouble dealing with spaces as   is disabled now. I just put ... to fill the spaces and colored it black

javac -d ../build/classes HelloWorld.java
java HelloWorld..........................


The problem now arises if a user copy pasted the text. (...) would be a mess. Here's an alternative

Code:
javac -d ../build/classes HelloWorld.java
java HelloWorld                          
But code tag is not very nice to look at for some. What do you think guys? In code btw, we just have to add space in it so in copy/paste thing, it's safe.