Ejemplo n.º 1
0
 def save(self):
     self.slug = slugify(self.title)
     self.content = markdown(mark_lookups(self.content_md))
     
     super(Post, self).save()
Ejemplo n.º 2
0
 def save(self):
     self.content = markdown(mark_lookups(self.content_md))
     
     super(Comment, self).save()