pwenker commited on
Commit
3eef870
·
1 Parent(s): 2304e59

chore: Fix HF space

Browse files
Files changed (1) hide show
  1. src/pronunciation_trainer/app.py +2 -1
src/pronunciation_trainer/app.py CHANGED
@@ -20,7 +20,8 @@ from pronunciation_trainer.transcription import (transcribe_to_graphemes,
20
  with gr.Blocks() as demo:
21
  with gr.Tab("Welcome"):
22
  readme = Path("README.md").read_text()
23
- gr.Markdown(readme)
 
24
 
25
  with gr.Tab("Grapheme-Based Speech Evaluation"):
26
  with gr.Row():
 
20
  with gr.Blocks() as demo:
21
  with gr.Tab("Welcome"):
22
  readme = Path("README.md").read_text()
23
+ gr_readme = readme.split('---')[2].strip()
24
+ gr.Markdown(gr_readme)
25
 
26
  with gr.Tab("Grapheme-Based Speech Evaluation"):
27
  with gr.Row():