Spaces:
Runtime error
Runtime error
File size: 691 Bytes
3c42b4c 7b1dafa 3c42b4c 14a857e 3c42b4c 14a857e 3c42b4c |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
HTML = "<!-- Include stylesheet -->\n<link href=\"https://cdn.quilljs.com/1.3.6/quill.snow.css\" rel=\"stylesheet\">\n\n<!-- Create the editor container -->\n<div id=\"editor\">\n <p>Hello World!</p>\n <p>Some initial <strong>bold</strong> text</p>\n <p><br></p>\n</div>\n\n<!-- Include the Quill library -->\n<script src=\"https://cdn.quilljs.com/1.3.6/quill.js\"></script>\n\n<!-- Initialize Quill editor -->\n<script>\n var quill = new Quill('#editor', {\n theme: 'snow'\n });\n</script>"
def greet(name):
return HTML, "Hello " + name + "!!"
iface = gr.Interface(greet, gr.Textbox(placeholder="Enter sentence here..."), ["html", "text"])
iface.launch() |