Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -56,9 +56,9 @@ def main_fn(url: str, check: list[int], request: gr.Request):
|
|
| 56 |
|
| 57 |
demo = gr.Interface(
|
| 58 |
main_fn,
|
| 59 |
-
title="URL to Markdown",
|
| 60 |
-
description="""<div style="width: fit-content; margin: 0 auto;">
|
| 61 |
-
<div style="width: fit-content; margin: 0 auto;">URLで与えたHTMLを取得してMarkdownに変換します。Reactなどの動的に生成されるHTMLに
|
| 62 |
inputs=[
|
| 63 |
gr.Text(label="URL", placeholder="https://*****"),
|
| 64 |
gr.CheckboxGroup(
|
|
|
|
| 56 |
|
| 57 |
demo = gr.Interface(
|
| 58 |
main_fn,
|
| 59 |
+
title="URL to Markdown V2",
|
| 60 |
+
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>
|
| 61 |
+
<div style="width: fit-content; margin: 0 auto;">URLで与えたHTMLを取得してMarkdownに変換します。Playwright を使用しているのでReactなどの動的に生成されるHTMLにも対応しています</div>""",
|
| 62 |
inputs=[
|
| 63 |
gr.Text(label="URL", placeholder="https://*****"),
|
| 64 |
gr.CheckboxGroup(
|