Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -71,7 +71,8 @@ def display_glossary_grid(roleplaying_glossary):
|
|
71 |
with cols[idx]:
|
72 |
st.markdown(f"#### {game}")
|
73 |
for term in terms:
|
74 |
-
links_md = ' '.join([f"[{emoji}]({url(term)})" for emoji, url in search_urls.items()])
|
|
|
75 |
st.markdown(f"{term} {links_md}", unsafe_allow_html=True)
|
76 |
|
77 |
def display_glossary_entity(k):
|
|
|
71 |
with cols[idx]:
|
72 |
st.markdown(f"#### {game}")
|
73 |
for term in terms:
|
74 |
+
#links_md = ' '.join([f"[{emoji}]({url(term)})" for emoji, url in search_urls.items()])
|
75 |
+
links_md = ' '.join([f"[{emoji}]({category} - {url(term)})" for emoji, url in search_urls.items()])
|
76 |
st.markdown(f"{term} {links_md}", unsafe_allow_html=True)
|
77 |
|
78 |
def display_glossary_entity(k):
|