projects
/
pgwui_sql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84cd08e
)
Preserve spacig and line-breaks in sql result output
author
Karl O. Pinc
<kop@karlpinc.com>
Tue, 24 Sep 2024 18:48:10 +0000
(13:48 -0500)
committer
Karl O. Pinc
<kop@karlpinc.com>
Tue, 24 Sep 2024 18:48:10 +0000
(13:48 -0500)
src/pgwui_sql/templates/sql.mak
patch
|
blob
|
history
diff --git
a/src/pgwui_sql/templates/sql.mak
b/src/pgwui_sql/templates/sql.mak
index 837f1115e6e23a2c02fc13517d1cf865e5ab6194..7e28e0db8cfce205d1b2da598d58d51b1d8d45d2 100644
(file)
--- a/
src/pgwui_sql/templates/sql.mak
+++ b/
src/pgwui_sql/templates/sql.mak
@@
-79,7
+79,7
@@
<%def name="render_row(data)">
<tr>
% for item in data:
- <td>${item}</td>
+ <td
class="sqltext"
>${item}</td>
% endfor
</tr>
</%def>