Spaces:
Running
Running
File size: 389 Bytes
a2522a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
import os
# ページ設定
st.set_page_config(
page_title="Pic-to-Header",
page_icon="🖼️",
layout="wide"
)
try:
with open("README.md", "r", encoding="utf-8") as f:
readme_content = f.read()
st.markdown(readme_content, unsafe_allow_html=True)
except FileNotFoundError:
st.error("README.mdが見つかりませんでした。")
|