pre text wrap
Browse files
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 f"<pre>{output}</pre>"
|
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 style='white-space: pre-wrap;'>{output}</pre>"
|
119 |
|
120 |
|
121 |
def review_table_summary(review: list[dict]) -> str:
|