vishnun commited on
Commit
9dfb4ab
·
1 Parent(s): 9c2a796

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,6 +45,6 @@ if submit:
45
  if x in input_text.split(" "):
46
  c_text = c_text + x + " "
47
  else:
48
- c_text = c_text + """<p style="color:rgb(0,255,0);">""" + x + """</p>""" + " "
49
 
50
- st.markdown(c_text)
 
45
  if x in input_text.split(" "):
46
  c_text = c_text + x + " "
47
  else:
48
+ c_text = c_text + '<p style="color:rgb(0,255,0);">' + x + '</p>' + " "
49
 
50
+ st.markdown(c_text, unsafe_allow_html=True)