On Jan 17, 2:50 pm, Miki <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Posting code examples to blogger.com hosted blog is not fun (need to
> remember alway escape < and >).
> Is there any free blog hosting that is more "code friendly" (easy to
> post code snippets and such)?
>
> Thanks,
> --
> Miki <[EMAIL PROTECTED]>http://pythonwise.blogspot.com

how about bracketing your code in the <pre></pre> tags?

Something like this:
<pre>
import sys, os, shutil

def getDir(fullPath):
    dirName, fileName = os.path.split(fullPath)
    return dirName
</pre>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to