Here's something I'm using in an application - it uses the 'Textile'
engine so that the person entering the markup doesn't have to worry
about HTML. Works well!

It's in a model, and this is all MR by the way;

class Person(models.Model):
...
    expectations = models.TextField('Expectations body', blank=True)
    expectations_markup = models.TextField('Expectations body as HTML',
blank=True, null=True)
...

    def save(self):
        import textile
...
        self.expectations_markup = textile.textile(self.expectations)
...
        super(Person, self).save()

Also check out http://e-scribe.com/news/171 from Paul Bissex - a Wiki
in 15-20 lines of python (and Django!) ;)

Cheers,
Tone


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to