diff --git a/utils/app.py b/utils/app.py index 41032a9..2629d22 100644 --- a/utils/app.py +++ b/utils/app.py @@ -5,7 +5,7 @@ import generate def sanitize_html(html): # Allow only a limited set of tags and attributes - allowed_tags = ['a', 'b', 'i', 'em', 'strong'] + allowed_tags = [] allowed_attributes = {'a': ['href']} return bleach.clean(html, tags=allowed_tags, attributes=allowed_attributes) @@ -55,4 +55,4 @@ def case(): return render_template('casing.j2') if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + app.run(debug=True)