File size: 848 Bytes
41656fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
import os
import glob

# ページ設定
st.set_page_config(
    page_title="Pic-to-Header",
    page_icon="🖼️",
    layout="wide"
)

# リリースノートの表示
st.title("📝 リリースノート")
release_notes_files = glob.glob("docs/*.md")
if release_notes_files:
    for file_path in release_notes_files:
        try:
            with open(file_path, "r", encoding="utf-8") as f:
                release_content = f.read()
            st.markdown(f"### {os.path.basename(file_path)}")
            st.markdown(release_content, unsafe_allow_html=True)
            st.markdown("---")
        except Exception as e:
            st.error(f"{file_path}の読み込み中にエラーが発生しました: {e}")
else:
    st.error("リリースノートのMarkdownファイルが見つかりませんでした。")