this is my data on database
and this is my posts.ejs file
<p> <%= data[i]['article'] %> </p>
and this is output
how can i write it in pre tag
Use this
<%- data[i]['article'] %>
Instead of this
<%= data[i]['article'] %>
More on this here