0

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

Abdi Kaan
  • 15
  • 8

1 Answers1

2

Use this

<%- data[i]['article'] %>

Instead of this

<%= data[i]['article'] %>

More on this here