Commit
·
a9da9d4
1
Parent(s):
aac23ef
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"<p style=\"color:Blue;\">{result.title.html}</p
|
| 17 |
f"<a href=\"{result.target_uri}\" style=\"color:Green;\">{result.target_uri}</a>:<br>"
|
| 18 |
-
f"{result.snippet.html}"
|
| 19 |
)
|
| 20 |
|
| 21 |
cola, colb, colc = st.columns([5,4,5])
|
|
|
|
| 13 |
|
| 14 |
def result_html(result):
|
| 15 |
return (
|
| 16 |
+
f"<b><p style=\"color:Blue;\">{result.title.html}</p></b>"
|
| 17 |
f"<a href=\"{result.target_uri}\" style=\"color:Green;\">{result.target_uri}</a>:<br>"
|
| 18 |
+
f"<p>{result.snippet.html}</p>"
|
| 19 |
)
|
| 20 |
|
| 21 |
cola, colb, colc = st.columns([5,4,5])
|