Liam Dyer
simplify
1cf5a2d unverified
raw
history blame
307 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(
convert,
inputs=gr.File(label="Upload File", type="filepath"),
outputs=gr.Text(label="Markdown"),
).launch()