mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-27 23:51:47 +00:00
cef608b809
Signed-off-by: Beichi-CHs <g841734459@126.com>
11 lines
271 B
Python
11 lines
271 B
Python
from django.db.models import JSONField # NOQA
|
|
from django.db import models
|
|
|
|
from utils.xss_filter import XSSHtml
|
|
|
|
|
|
class RichTextField(models.TextField):
|
|
def get_prep_value(self, value):
|
|
with XSSHtml() as parser:
|
|
return parser.clean(value or "")
|