Page 1 of 1

Problems with HTML in entries

Posted: Mon Jan 03, 2005 9:13 pm
by typobuggz
Maybe someone has already addressed this. Maybe I haven't done something right in the preferences as well.

When I post regular text everything comes out great. However, when I post <a href> tags and others things get strange. It either cuts out the tags or the rest of the message.

Here is the site, thanks! http://www.typo-five.com

Re: Problems with HTML in entries

Posted: Tue Jan 04, 2005 11:41 am
by garvinhicking
You just need to take care that you always use opening and closing quotes.

Code: Select all

<a href="http://typophile.com/downloads/kerning_pairs_1.0.txt> kerning pairs table </a>
is invalid HTML, while:

Code: Select all

<a href="http://typophile.com/downloads/kerning_pairs_1.0.txt"> kerning pairs table </a>
is not. :)

Regards,
Garvin

Posted: Tue Jan 04, 2005 7:46 pm
by Guest
Thanks! I must have overlooked something that simple.