I'm making a blog app in Django, where the users can write their own blog post.
I have the worry that the User could introduce malicious code in the database while writing a blog post.
For example, by writing javascript code in the blog post body:
alert("malicious code here, ahh!)
So there is any way to process the content of the user by parsing the value of the content, or something like that?