removed newlines from comments ejs

This commit is contained in:
2025-10-09 14:28:51 +01:00
parent 783f386dfe
commit 84a34d94f3

View File

@@ -1,14 +1,14 @@
<div id='comment-name'> <div id='comment-name' style='display: inline'>
<b><%= comment.name %></b> <b><%= comment.name %></b>
</div> </div>
<div id='comment-date date'> <div id='comment-date' class='date' style='display: inline'>
<%= func.unix_time_to_date_format(comment.pubdate) %> <%= func.unix_time_to_date_format(comment.pubdate) %>
</div> </div>
<div id='comment-id'> <div id='comment-id' style='display: inline'>
<a href='/comment/<%= postID %>-<%= comment.id %>'>No. <%= postID %>-<%= comment.id %></a>:<br/> <a href='/comment/<%= postID %>-<%= comment.id %>'>No. <%= postID %>-<%= comment.id %></a>:<br/>
</div> </div>
<div id='comment-content'> <div id='comment-content' style='display: inline'>
<%- func.render_comment(comment.content) %> <%- func.render_comment(comment.content) %>
</div> </div>
<br/> <br/>