awacke1 commited on
Commit
9ff1a1c
1 Parent(s): ab367fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -85,9 +85,9 @@ def main():
85
  processed_sheet = process_chord_sheet(chord_sheet)
86
  #st.markdown(processed_sheet, unsafe_allow_html=True)
87
  table_md = f"""
88
- | Wikipedia | YouTube | Chords | Lyrics |
89
- | --------- | ------- | ------ | ------ |
90
- | [📚]({create_search_url_wikipedia(song_info)}) | [🎥]({create_search_url_youtube(song_info)}) | [🎸]({create_search_url_chords(song_info)}) | [🎶]({create_search_url_lyrics(song_info)}) |
91
  """
92
  st.markdown(table_md)
93
  st.header("🎼 Available Songs")
@@ -98,9 +98,9 @@ def main():
98
  st.markdown("**" + song_info + "**")
99
  with icol2:
100
  table_md = f"""
101
- | Wikipedia | YouTube | Chords | Lyrics |
102
- | --------- | ------- | ------ | ------ |
103
- | [📚]({create_search_url_wikipedia(song_info)}) | [🎥]({create_search_url_youtube(song_info)}) | [🎸]({create_search_url_chords(song_info)}) | [🎶]({create_search_url_lyrics(song_info)}) |
104
  """
105
  st.markdown(table_md)
106
  with col3:
 
85
  processed_sheet = process_chord_sheet(chord_sheet)
86
  #st.markdown(processed_sheet, unsafe_allow_html=True)
87
  table_md = f"""
88
+ | --------- | ------- |
89
+ | [📚Wikipedia]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)}) |
90
+ | [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) |
91
  """
92
  st.markdown(table_md)
93
  st.header("🎼 Available Songs")
 
98
  st.markdown("**" + song_info + "**")
99
  with icol2:
100
  table_md = f"""
101
+ | --------- | ------- |
102
+ | [📚Wikipedia]({create_search_url_wikipedia(song_info)}) | [🎥YouTube]({create_search_url_youtube(song_info)}) |
103
+ | [🎸Chords]({create_search_url_chords(song_info)}) | [🎶Lyrics]({create_search_url_lyrics(song_info)}) |
104
  """
105
  st.markdown(table_md)
106
  with col3: