moritalous commited on
Commit
a84424d
1 Parent(s): aae4846

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -29,9 +29,11 @@ def main_fn(url: str, check: list[int]):
29
 
30
  demo = gr.Interface(
31
  main_fn,
32
- title="URL to Markdown V2",
33
- description="""<div style="width: fit-content; margin: 0 auto;">It gets the HTML given by the URL and converts it to Markdown. It uses Playwright, so it also supports dynamically generated HTML such as React.</div>
34
- <div style="width: fit-content; margin: 0 auto;">URLで与えたHTMLを取得してMarkdownに変換します。Playwright を使用しているのでReactなどの動的に生成されるHTMLにも対応しています</div>""",
 
 
35
  inputs=[
36
  gr.Text(label="URL", placeholder="https://*****"),
37
  gr.CheckboxGroup(
 
29
 
30
  demo = gr.Interface(
31
  main_fn,
32
+ title="URL to Markdown",
33
+ description="""<div style="width: fit-content; margin: 0 auto;">Gets HTML given by URL and converts it to Markdown.Does not support dynamically generated HTML such as React.</div>
34
+ <div style="width: fit-content; margin: 0 auto;">URLで与えたHTMLを取得してMarkdownに変換します。Reactなどの動的に生成されるHTMLには対応していません</div>
35
+
36
+ <a href="https://huggingface.co/spaces/moritalous/url-to-markdown-v2">New Version is here.</a>""",
37
  inputs=[
38
  gr.Text(label="URL", placeholder="https://*****"),
39
  gr.CheckboxGroup(