I have been trying to post some sample C++ code into the blog. Unfortunately I have almost come to the state of punching this computer, which wouldn't really help the situation.
When submitting text it escapes most of the characters:
" -> "
& -> &
< -> <
Since C++ uses < and > a lot, it makes this a little frustrating. Clicking between the main editor and the HTML one, you loose all your stuff in angle brackets.
Is there a way to disable the WYSIWYG editor and just use HTML? Or perhaps get it to escape the angle brackets too?
There is no way at the moment to get an angle bracket to appear.
#include <string> -> #include
#include <string> -> #include <string>
So no joy there...
When submitting text it escapes most of the characters:
" -> "
& -> &
< -> <
Since C++ uses < and > a lot, it makes this a little frustrating. Clicking between the main editor and the HTML one, you loose all your stuff in angle brackets.
Is there a way to disable the WYSIWYG editor and just use HTML? Or perhaps get it to escape the angle brackets too?
There is no way at the moment to get an angle bracket to appear.
#include <string> -> #include
#include <string> -> #include <string>
So no joy there...
Comment