LRU1 commited on
Commit
da9cb3e
·
1 Parent(s): c246438

add markdown frame

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -84,7 +84,8 @@ if run_btn and video_file:
84
  else:
85
  st.success("✅ Notes generated!")
86
  md_content = output_md.read_text()
87
- st.markdown(md_content)
 
88
  st.download_button(
89
  label="💾 Download notes.md",
90
  data=md_content,
 
84
  else:
85
  st.success("✅ Notes generated!")
86
  md_content = output_md.read_text()
87
+ with st.container(border=True):
88
+ st.markdown(md_content)
89
  st.download_button(
90
  label="💾 Download notes.md",
91
  data=md_content,