Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ import gradio as gr
|
|
3 |
def load_html():
|
4 |
with open('index.html','r') as h:
|
5 |
html=h.read()
|
|
|
6 |
h.close()
|
7 |
return html
|
8 |
|
|
|
3 |
def load_html():
|
4 |
with open('index.html','r') as h:
|
5 |
html=h.read()
|
6 |
+
html.replace("$name","Test")
|
7 |
h.close()
|
8 |
return html
|
9 |
|