import gradio as gr
# Define the pre-stored text snippets
snippet1 = """||
|:--:|
|Figure x: Caption|
"""
snippet2 = """
This is text with a tip format!
"""
# Function to insert snippet at a given position
def insert_snippet(text, snippet, position):
return text[:position] + snippet + text[position:]
# JavaScript to get and set cursor position
js_code = """
"""
with gr.Blocks() as demo:
gr.Markdown("# Blog Writing Helper")
with gr.Row():
with gr.Column():
text_input = gr.Textbox(lines=10, placeholder="Write your blog here...", label="Text Editor")
button1 = gr.Button("Insert Image Table", elem_id="button1")
button2 = gr.Button("Insert Snippet 2", elem_id="button2")
with gr.Column():
gr.Markdown("**Live Preview**")
markdown_preview = gr.Markdown(label="Live Preview", elem_id="preview-box")
# Live preview update
text_input.change(lambda text: text, inputs=text_input, outputs=markdown_preview)
# Adding JavaScript code to the HTML component
gr.HTML(js_code)
demo.launch()