cools commited on
Commit
89c98c3
·
1 Parent(s): 2f886f6

Update app.py

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