Beispiel #1
0
 def clean_comment(self):
     data = self.cleaned_data['comment']
     return sanitize_html(data, tags='p i strong b u a pre br', attrs='href')
Beispiel #2
0
def short_text(value):
    return sanitize_html(value, tags="i strong b u a")
Beispiel #3
0
def short_text(value):
    return sanitize_html(value, tags='i strong b u a')
Beispiel #4
0
def comment_text(value):
    return sanitize_html(value, tags="p i strong b u a pre br", attrs="href")
Beispiel #5
0
def comment_text(value):
    return sanitize_html(value, tags='p i strong b u a pre br', attrs='href')