pybloxsom, textile hack
Bah, in order for pybloxsom with the txtl backend to work somewhat
properly, one has to fix the txtl.py:cb_preformat definition to
something like:
def cb_preformat(args):
if args['parser'] == PREFORMATTER_ID and \
args['request'].getData()['flavour'] == "html":
return parse(''.join(args['story']))
else:
return ''.join(args['story']).replace("&","&")
This will make the RSS feed work properly.