Me and some friends are working on some PHP based templates for web
pages. We've templates that look like this (simplified):
<html>
<head>
<title>
The green and blue design for carpentry companies
</title>
</head>
<body>
<?php showMainContent(); ?>
<div style="width:200px; float:right">
<?php showLinkArea(3); ?>
</div>
</body>
</html>
I'd like to publish all the templates in our database in an RSS feed so
it will be easier to import them on other sites. Does it screw things
up if I stuff HTML into the DESCRIPTION tag on an RSS .91 feed?
|