Liam Dyer
initial
dd1cb9c unverified
raw
history blame
329 Bytes
import gradio as gr
import os
def convert(file):
os.system(f"pandoc {file} -t markdown -o output.md")
with open("output.md", "r") as f:
return f.read()
gr.Interface(
fn=convert,
inputs=[
gr.File(label="Upload File", type="filepath"),
],
outputs=[gr.Text(label="Markdown")],
).launch()