Update app.py
Browse files
app.py
CHANGED
|
@@ -12,6 +12,7 @@ from model import Parser
|
|
| 12 |
|
| 13 |
parser = Parser()
|
| 14 |
|
|
|
|
| 15 |
def parse(text):
|
| 16 |
output = parser.parse(text)
|
| 17 |
|
|
@@ -260,7 +261,7 @@ custom_css = \
|
|
| 260 |
box-shadow: none !important;
|
| 261 |
}
|
| 262 |
"""
|
| 263 |
-
with gr.Blocks(theme=Soft(
|
| 264 |
gr.HTML(description)
|
| 265 |
|
| 266 |
with gr.Row():
|
|
|
|
| 12 |
|
| 13 |
parser = Parser()
|
| 14 |
|
| 15 |
+
|
| 16 |
def parse(text):
|
| 17 |
output = parser.parse(text)
|
| 18 |
|
|
|
|
| 261 |
box-shadow: none !important;
|
| 262 |
}
|
| 263 |
"""
|
| 264 |
+
with gr.Blocks(theme=Soft(), css=custom_css) as demo:
|
| 265 |
gr.HTML(description)
|
| 266 |
|
| 267 |
with gr.Row():
|