Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,6 +46,6 @@ if submit:
|
|
46 |
if x in input_text.split(" "):
|
47 |
c_text = c_text + x + " "
|
48 |
else:
|
49 |
-
c_text = c_text + '<span style="font-weight:bold; color:rgb(0,255,0);>' + x + '</span>' + " "
|
50 |
|
51 |
st.markdown(c_text, unsafe_allow_html=True)
|
|
|
46 |
if x in input_text.split(" "):
|
47 |
c_text = c_text + x + " "
|
48 |
else:
|
49 |
+
c_text = c_text + '<span style="font-weight:bold; color:rgb(0,255,0);>"' + x + '</span>' + " "
|
50 |
|
51 |
st.markdown(c_text, unsafe_allow_html=True)
|