Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,8 @@ if submit:
|
|
86 |
|
87 |
with st.expander("Related Articles"):
|
88 |
for i in sorted[:5]:
|
89 |
-
st.write(f"""
|
90 |
st.write(f"""
|
|
|
91 |
<a href={data["url"][i]}>{data["title"][i]}</a>
|
92 |
""", unsafe_allow_html=True)
|
|
|
86 |
|
87 |
with st.expander("Related Articles"):
|
88 |
for i in sorted[:5]:
|
89 |
+
# st.write(f"""""",unsafe_allow_html=True)
|
90 |
st.write(f"""
|
91 |
+
<small>{data["url"][i].split("/")[2]}</small><br>
|
92 |
<a href={data["url"][i]}>{data["title"][i]}</a>
|
93 |
""", unsafe_allow_html=True)
|