I have created a webpage to create a post. For taking description, I have used CKEDITOR. When I save data in mongo database it is saved as:
'<p>How are you?</p>\r\n'
But when I fetch this and display it in my ejs file, then I got an error that is:
Uncaught SyntaxError: Invalid or unexpected token
After fetching the content looks like this:
"<p>How are you?</p>"
Can you help me out in this? Thanks in advance. And also ask me if you need further explanation.