Maki
Initial commit
5eaaebd
raw
history blame
273 Bytes
import streamlit as st
import os
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γŒθ¦‹γ€γ‹γ‚ŠγΎγ›γ‚“γ§γ—γŸγ€‚")