Its actually loading up as <img src="http://waloshin.com/blog/wp-content/uploads/2011/03/logo.png" </img>
This means it is being escaped for HTML output you will need to output it raw. Your Cocoa HTML converter seems to be designed to escape all html output it generates you'll need to go into your html file and manually change
HTML:
<img src="http://waloshin.com/blog/wp-content/uploads/2011/03/logo.png" </img>
to
HTML:
<img src="http://waloshin.com/blog/wp-content/uploads/2011/03/logo.png" alt="Site Logo text description" />[/QUOTE]
Ok as I originally coded this in the stock text editor on Ubuntu then changed some things on the crappy TextEdit on Mac osx.