Example #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')
Example #2
0
def short_text(value):
    return sanitize_html(value, tags="i strong b u a")
Example #3
0
def short_text(value):
    return sanitize_html(value, tags='i strong b u a')
Example #4
0
def comment_text(value):
    return sanitize_html(value, tags="p i strong b u a pre br", attrs="href")
Example #5
0
def comment_text(value):
    return sanitize_html(value, tags='p i strong b u a pre br', attrs='href')