Commit
·
1733e6b
1
Parent(s):
a9da9d4
Update app.py
Browse files
app.py
CHANGED
@@ -13,9 +13,9 @@ def search_chat_noir(key, search_query):
|
|
13 |
|
14 |
def result_html(result):
|
15 |
return (
|
16 |
-
f"<
|
17 |
f"<a href=\"{result.target_uri}\" style=\"color:Green;\">{result.target_uri}</a>:<br>"
|
18 |
-
f"<
|
19 |
)
|
20 |
|
21 |
cola, colb, colc = st.columns([5,4,5])
|
|
|
13 |
|
14 |
def result_html(result):
|
15 |
return (
|
16 |
+
f"<div style=\"color:Blue;font-weight: bold\">{result.title.html}</div><br>"
|
17 |
f"<a href=\"{result.target_uri}\" style=\"color:Green;\">{result.target_uri}</a>:<br>"
|
18 |
+
f"<div>{result.snippet.html}</div>"
|
19 |
)
|
20 |
|
21 |
cola, colb, colc = st.columns([5,4,5])
|