Hi, I'm having some trouble using django.contrib.markup -- I try to use the markdown filter and eveything works fine until I try to feed it "weird" chars (accented letters). When I do so (via the admin interface) and I access the page, markdown fails miserably and the template won't show the portion of text it's supposed to filter through markdown.
The error I get is: MARKDOWN-CRITICAL: "UnicodeDecodeError: Markdown only accepts unicode or ascii input." The error is pretty clear. However I am feeding input via the admin interface (utf-8) with a normal browser (safari - using utf-8 too), and all the project/application files are written with textmate (defaults to utf-8) so I don't get why is django failing in feeding markdown.py unicode stuff. Now: if it was for me I'd just feed the admin interface html entities but since I have to filter comments via markdown as well, I can't ask people to type in entities instead of chars. Am I missing something? Am I supposed to sanitize "object.whatever" somehow before applying the markdown filter? If it's supposed to work as is, what could be the cause that leads markdown.py to fail? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---