Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

waloshin

macrumors 68040
Original poster
Oct 9, 2008
3,560
394
Found on the top of.

http://waloshin.com/

It just loads as <img src="http://waloshin.com/blog/wp-content/uploads/2011/03/logo.png" </img>

No actual image.
 
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" />
 
For a start trying to load the source url directly brings up this error:

The website declined to show this webpage
HTTP 403
Most likely causes:
This website requires you to log in.

What you can try:
Go back to the previous page.

More information

This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.

For more information about HTTP errors, see Help.
 
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.
 
Ok as I originally coded this in the stock text editor on Ubuntu then changed some things on the crappy TextEdit on Mac osx.

Yes there are better text editors but don't blame Mac Text Edit ... in the preferences you can set Rich Text or Plain Text. Better yet just get a free copy of TextWrangler or Komodo Edit.
 
Ok as I originally coded this in the stock text editor on Ubuntu then changed some things on the crappy TextEdit on Mac osx.

I had almost the same thing happen to me... I was working in that lousy Photoshop and it forgot to remind me to do a color correction.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.