Login

Markup Selection in Admin

Author:
jonathan
Posted:
August 15, 2007
Language:
Python
Version:
.96
Score:
3 (after 3 ratings)

This method lets you define your markup language and then processes your entries and puts the HTML output in another field on your database.

I came from a content management system that worked like this and to me it makes sense. Your system doesn't have to process your entry every time it has to display it. You would just call the "*_html" field in your template.

Requires: Django .96 Markdown Textile

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
MARKUP_LANG_CHOICES = (
    ('markdown', 'Markdown'),
    ('textile', 'Textile'),
    ('none', 'None'),
)

class Entry(models.Model):
    markup_lang = models.CharField('Markup Language', maxlength=255, choices=MARKUP_LANG_CHOICES, default='markdown')
    body = models.TextField(help_text='Use selected markup.')
    body_html = models.TextField('Body as HTML', blank=True, null=True)

    def save(self):
        if self.markup_lang == 'markdown':
	    import markdown
	    self.body_html = markdown.markdown(self.body)
	if self.markup_lang == 'textile':
	    import textile
	    self.body_html = textile.textile(self.body)
	if self.markup_lang == 'none':
	    self.body_html = self.body
	super(Entry, self).save()

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

Please login first before commenting.