import gradio as gr
# Define the pre-stored text snippets
snippet1 = """|![Link Text](www.example.com)|
|:--:|
|Figure x: Caption|
"""
snippet2 = """
This is text with a tip format!
"""
snippet3 = """[[1]](#1)
[1] : First Last, [Example](www.example.com), 2021"""
# 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 Tip Format", elem_id="button2")
button3 = gr.Button("Insert Reference", elem_id="button3")
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()