Spaces:
Running
Running
File size: 376 Bytes
ce649db 5a586e8 ce649db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pathlib import Path
import streamlit as st
def read_markdown_file(markdown_file):
return Path(markdown_file).read_text()
def app():
st.markdown("<h1 style='text-align: center; color: #CD212A;'> CLIP-Italian </h1>", unsafe_allow_html=True)
intro_markdown = read_markdown_file("introduction.md")
st.markdown(intro_markdown, unsafe_allow_html=True)
|