LAP-DEV commited on
Commit
03ecd9d
·
verified ·
1 Parent(s): bb3499f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -6
app.py CHANGED
@@ -288,14 +288,17 @@ class App:
288
  #gr.Markdown(MARKDOWN, elem_id="md_project")
289
 
290
  with gr.Column(scale=2):
 
 
 
 
291
 
292
- markdown_title = f"# {website_title}"
293
-
294
  if website_subtitle:
295
- markdown_subtitle = f"##### {website_subtitle}"
296
- markdown_title += markdown_subtitle
297
-
298
- gr.Markdown(markdown_title,elem_id="md_project")
 
299
 
300
  with gr.Column(scale=4):
301
  if disclaimer_show:
 
288
  #gr.Markdown(MARKDOWN, elem_id="md_project")
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
+
301
+ gr.Markdown(markdown_text,elem_id="md_project")
302
 
303
  with gr.Column(scale=4):
304
  if disclaimer_show: