christopher commited on
Commit
1733e6b
1 Parent(s): a9da9d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,9 +13,9 @@ def search_chat_noir(key, search_query):
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])
 
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])