awacke1 commited on
Commit
7d69f61
·
verified ·
1 Parent(s): c96b308

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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):