jian-mo commited on
Commit
f467736
·
1 Parent(s): 4f55fbb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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([f'<li>{i}</li>' for i in results.split("<sep>")]))
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