cools commited on
Commit
2f886f6
·
1 Parent(s): 24dbe75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -51,7 +51,10 @@ if run:
51
  tabs = st.tabs(types)
52
  for (i, tab) in enumerate(tabs):
53
  with tab:
54
- st.text(texts[i])
 
 
 
55
 
56
  st.divider()
57
 
 
51
  tabs = st.tabs(types)
52
  for (i, tab) in enumerate(tabs):
53
  with tab:
54
+ paras = texts[0].split('<PARA>')
55
+ t = "</div><br/><div>".join(paras)
56
+ t = "<div>" + t
57
+ st.markdown(t, unsafe_allow_html=True)
58
 
59
  st.divider()
60