tags:

views:

225

answers:

2

I am looking for some blog site where i will be able to directly paste c++ code examples in my publishes and see the code with all the alignments and colors like i see it on pastie.org.

I need all those things be made automatically because i don't know HTML and can't make by myself the code changes.

+5  A: 

Get wordpress + WP-Syntax.

You won't be able to "copy and paste" the code directly, but you'll have to wrap it like this:

<pre lang="c++">
    CODE GOES HERE
</pre>
LiraNuna
I had trouble to use that wordpress app . It wants me to establish some web server , I look only some site where i can directly copy paste without further installations .
Night Walker
@Night Walker, you don't have to host the server yourself. If you get an account on wordpress.com you can let them host the blog for you.
Brian Neal
I downloaded that wordpress app , and had trouble to understand what to do with it there is only php files there .
Night Walker
Well if you want a blog, you can host it yourself by following the installation directions for blog software (like wordpress), or you can turn to a service that does the hosting for you: blogspot.com, wordpress.com, etc.
Brian Neal
+2  A: 
Kirill V. Lyadvinsky