Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def get_html(row):
|
|
62 |
product_line = f" [{row.product_line}]" if row.product_line is not None else ""
|
63 |
path = f"[{row.path}]" if row.path is not None and len(row.path) > 0 else ""
|
64 |
result = f"""<div style='font-size:16pt'>{html.escape(row.title)} <font style='font-size:10pt'>[{row.origin}]{product_line}{product_}({row.scores})</font> </div>
|
65 |
-
<div style='font-size:8pt'>{path}</div>
|
66 |
{html.escape(row.content)}<br><a href='{row.url}' target='_blank'>Link</a>"""
|
67 |
return result
|
68 |
|
|
|
62 |
product_line = f" [{row.product_line}]" if row.product_line is not None else ""
|
63 |
path = f"[{row.path}]" if row.path is not None and len(row.path) > 0 else ""
|
64 |
result = f"""<div style='font-size:16pt'>{html.escape(row.title)} <font style='font-size:10pt'>[{row.origin}]{product_line}{product_}({row.scores})</font> </div>
|
65 |
+
<div style='font-size:8pt'>{html.escape(path)}</div>
|
66 |
{html.escape(row.content)}<br><a href='{row.url}' target='_blank'>Link</a>"""
|
67 |
return result
|
68 |
|