Example #1
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
Example #2
0
 def render(self):
     self.body_html = _get_markup_formatter()(self.body)
     # Remove tags which was generated with the markup processor
     text = strip_tags(self.body_html)
     # Unescape entities which was generated with the markup processor
     self.body_text = unescape(text)
Example #3
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
Example #4
0
 def render(self):
     self.body_html = _get_markup_formatter()(self.body)
     # Remove tags which was generated with the markup processor
     text = strip_tags(self.body_html)
     # Unescape entities which was generated with the markup processor
     self.body_text = unescape(text)
Example #5
0
def post_ajax_preview(request):
    content = request.POST.get('data')
    html = util._get_markup_formatter()(content)
    return render(request, 'pybb/_markitup_preview.html', {'html': html})
Example #6
0
def post_ajax_preview(request):
    content = request.POST.get('data')
    html = util._get_markup_formatter()(content)
    return render(request, 'pybb/_markitup_preview.html', {'html': html})