Spaces:
Runtime error
Runtime error
EliottZemour
commited on
Commit
•
64e01a0
1
Parent(s):
34c16e0
final update
Browse files
app.py
CHANGED
@@ -73,11 +73,6 @@ demo = gr.Blocks(css=CSS)
|
|
73 |
with demo:
|
74 |
with gr.Column():
|
75 |
gr.Markdown("# arXiv Cards Generator ⚙️", elem_id="ctr")
|
76 |
-
gr.HTML("""
|
77 |
-
<p align="center">
|
78 |
-
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7a/ArXiv_logo_2022.png" alt="logo" width="100">
|
79 |
-
</p>
|
80 |
-
""", elem_id="ctr")
|
81 |
gr.Markdown(
|
82 |
"""
|
83 |
Need a simple and visual way to share arXiv papers on presentations, blogposts, messages?
|
@@ -103,10 +98,13 @@ with demo:
|
|
103 |
with gr.Column():
|
104 |
gr.Markdown(
|
105 |
"""
|
106 |
-
|
107 |
-
- [
|
|
|
|
|
|
|
108 |
"""
|
109 |
-
)
|
110 |
button.click(
|
111 |
fn=create_html_card,
|
112 |
inputs=[text],
|
|
|
73 |
with demo:
|
74 |
with gr.Column():
|
75 |
gr.Markdown("# arXiv Cards Generator ⚙️", elem_id="ctr")
|
|
|
|
|
|
|
|
|
|
|
76 |
gr.Markdown(
|
77 |
"""
|
78 |
Need a simple and visual way to share arXiv papers on presentations, blogposts, messages?
|
|
|
98 |
with gr.Column():
|
99 |
gr.Markdown(
|
100 |
"""
|
101 |
+
### Resources and inspirations
|
102 |
+
- The code for retrieving the information through the arXiv API is mainly taken from [github.com/kunalghosh/Conference-Grok](https://github.com/kunalghosh/Conference-Grok)
|
103 |
+
- The [pdf2preview](https://huggingface.co/spaces/chuanenlin/pdf2preview) space is also a great way to share academic publications on slides
|
104 |
+
|
105 |
+
**Author**: [eliolio](https://huggingface.co/eliolio)
|
106 |
"""
|
107 |
+
, elem_id="ctr")
|
108 |
button.click(
|
109 |
fn=create_html_card,
|
110 |
inputs=[text],
|