Spaces:
Runtime error
Runtime error
Juan Martínez
commited on
Commit
·
7ecf31e
1
Parent(s):
e6c3185
fix style
Browse files
app.py
CHANGED
@@ -31,5 +31,5 @@ if search_text:
|
|
31 |
search_results = search(search_text, model, ds, 10)
|
32 |
for title, content, url, _ in search_results:
|
33 |
st.markdown(f"""<div><a href="{url}">{title}</a></div>""", unsafe_allow_html=True)
|
34 |
-
st.markdown(f"""<div>{content}...</div>""")
|
35 |
st.markdown("---")
|
|
|
31 |
search_results = search(search_text, model, ds, 10)
|
32 |
for title, content, url, _ in search_results:
|
33 |
st.markdown(f"""<div><a href="{url}">{title}</a></div>""", unsafe_allow_html=True)
|
34 |
+
st.markdown(f"""<div>{content}...</div>""", unsafe_allow_html=True)
|
35 |
st.markdown("---")
|