Adding CSS to RSS is quite simple as shown in here: http://www.petefreitag.com/item/208.cfm
Creating RSS is simple with django too as documented in here: https://docs.djangoproject.com/en/1.3/ref/contrib/syndication/
How to combine these two? Or better, how to add CSS to RSS while using django provided feed framework?
I know that i could create my own RSS xml file but why I should do that if framework works just fine? I just need a way to link css, that I could use code highlight or something like that.
What are the best practices to provide pretty RSS in django?