예제 #1
0
파일: views.py 프로젝트: pybest/pybbm
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})
예제 #2
0
파일: views.py 프로젝트: JTLX/pybbm
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})
예제 #3
0
 def render(self):
     self.body_html = _get_markup_formatter()(self.body, instance=self)
     # 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)
예제 #4
0
파일: models.py 프로젝트: wengole/pybbm
 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)
예제 #5
0
파일: models.py 프로젝트: Bishi/VlcWebpage
 def save(self, *args, **kwargs):
     #self.body_html = BaseParser().format(self.body)
     self.body_html = _get_markup_formatter()(self.body)
     super(NewsArticle, self).save(*args, **kwargs)
예제 #6
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)
예제 #7
0
파일: views.py 프로젝트: magatz/pybbm
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})
예제 #8
0
 def save(self, *args, **kwargs):
     self.signature_html = util._get_markup_formatter()(self.signature)
     super(PybbProfile, self).save(*args, **kwargs)