Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -159,6 +159,6 @@ c1, c2, c3 = st.columns([1, 3, 1])
|
|
| 159 |
|
| 160 |
with c2:
|
| 161 |
text_output=st.empty()
|
| 162 |
-
text_output.markdown("".join(["<ul>", " ".join([f'<li>{i}</li>' for i in results.split("<sep>")],"</ul>"]),
|
| 163 |
|
| 164 |
|
|
|
|
| 159 |
|
| 160 |
with c2:
|
| 161 |
text_output=st.empty()
|
| 162 |
+
text_output.markdown(" ".join(["<ul>", " ".join([f'<li>{i}</li>' for i in results.split("<sep>")]),"</ul>"]), unsafe_allow_html=True)
|
| 163 |
|
| 164 |
|