Update app.py
Browse files
app.py
CHANGED
@@ -289,12 +289,12 @@ class App:
|
|
289 |
|
290 |
with gr.Column(scale=2):
|
291 |
|
292 |
-
markdown_text = """
|
293 |
# {website_title}
|
294 |
"""
|
295 |
|
296 |
if website_subtitle:
|
297 |
-
markdown_text += """
|
298 |
##### {website_subtitle}
|
299 |
"""
|
300 |
|
|
|
289 |
|
290 |
with gr.Column(scale=2):
|
291 |
|
292 |
+
markdown_text = f"""
|
293 |
# {website_title}
|
294 |
"""
|
295 |
|
296 |
if website_subtitle:
|
297 |
+
markdown_text += f"""
|
298 |
##### {website_subtitle}
|
299 |
"""
|
300 |
|