Spaces:
Running
on
Zero
Running
on
Zero
import gradio as gr | |
import os | |
import spaces | |
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() | |