POLRAMBORA commited on
Commit
e9924a3
·
verified ·
1 Parent(s): 039fcd5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -147,7 +147,8 @@ def render_message(history):
147
 
148
 
149
  def escape_html(unsafe_text):
150
- return ''.join(f"&#{ord(char)};" for char in unsafe_text)
 
151
 
152
 
153
  css="""
 
147
 
148
 
149
  def escape_html(unsafe_text):
150
+ escaped_text = ''.join(f"&#{ord(char)};" if char != '\n' else '<br>' for char in unsafe_text)
151
+ return escaped_text
152
 
153
 
154
  css="""