Ray Leung commited on
Commit
693a2ce
·
verified ·
1 Parent(s): 9b8b546

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -7
app.py CHANGED
@@ -23,15 +23,10 @@ def create_tabs_header(topic, description, references):
23
  with gr.Row():
24
  with gr.Column(scale=4):
25
  reference_list = "> " + "\n> ".join(references)
26
- content = f"## {topic}"
27
- content += f"### {description}"
28
  content += reference_list
29
  gr.Markdown(content)
30
- # gr.Markdown(f"""
31
- # ## {topic}
32
- # ### {description}
33
- # {reference_list}
34
- # """)
35
 
36
  with gr.Column(scale=1):
37
  test_pipeline_button = gr.Button(value="Process")
 
23
  with gr.Row():
24
  with gr.Column(scale=4):
25
  reference_list = "> " + "\n> ".join(references)
26
+ content = f"## {topic}\n"
27
+ content += f"### {description}\n"
28
  content += reference_list
29
  gr.Markdown(content)
 
 
 
 
 
30
 
31
  with gr.Column(scale=1):
32
  test_pipeline_button = gr.Button(value="Process")