Jaume commited on
Commit
b57d56f
·
1 Parent(s): 16998ad

preserve new lines in output

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -115,7 +115,7 @@ def apply_review(text: str, review: list[dict]) -> str:
115
  )
116
  last_end = end
117
  output += text[last_end:]
118
- return output
119
 
120
 
121
  def review_table_summary(review: list[dict]) -> str:
 
115
  )
116
  last_end = end
117
  output += text[last_end:]
118
+ return f"<pre>{output}</pre>"
119
 
120
 
121
  def review_table_summary(review: list[dict]) -> str: