Hello, I have the following problem, install CKEDITOR on a web with django that I am doing, and when I publish a post, the post appears on the web but with the tags
How can I make those html tags disappear? Inspecting the source code from the browser you see this (I leave an image)
I need that when viewing from the web those labels are not seen.
Thank you so much.
I already solved it, you just had to put safe when calling the variable, for example I had it like this {{project.description}} but you had to put it like this {{project.description|safe}}