Spaces:
Sleeping
Sleeping
import streamlit as st | |
#from src.some_module import your_pipeline # whatever you need | |
st.title("Home-FastHTML in Streamlit") | |
input_html = st.text_area("Paste HTML here") | |
if st.button("Transform"): | |
output = your_pipeline(input_html) | |
st.code(output, language="html") |