RSS was Offline - Fixed Now
Where It Started
Welp. I broke my RSS feed.
It's hand-rolled. I use to wrap posts in a standard fashion. What I don't do is escape the CDATA strings from inside posts. That leads to.... issues. Issues like the feed being completely broken.
That type of stuff is one of the hazards of writing your own site builder. It's not a big deal if you've got time to play with things. I'm fortunate enough to be in a position where I can.
Now, time to dig in and figure out how to fix it.
-a
How It's Going
Got it fixed. Took about 45 minutes to figure out where things were going wrong and what I need to do to fix them.
Short answer is that I'm doing a find and replace for <![CDATA[ to replace the < with a < token and updating the ending ]]> to replace the > with a >. Those tokens show up and less than an greater than signs but they can be nested safely.
Now, back to bitty
-a