Well, I gave up on the automation. I couldn't get restructuredtext to work right in my views, so I swallowed my pride and went into copy/paste mode. I simple did this:
{% load markup %} <table border="1"> {% for post in posts %} <tr> <td valign="top">{{ post.id }}</td> <td valign="top">{{ post.body|restructuredtext|escape }}</td> </tr> {% endfor %} </table> I edited each and every post and pasted the stuff from that page above. This is for anyone comes across the same issue and can't fix it like I couldn't. My fingers hurt now. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---