A streamlit component, to visualize mermaid
Project description
streamlit-mermaid
Streamlit Component, for Mermaid.
Installation
pip install streamlit-mermaid
Quick start
import streamlit_mermaid as stmd
import streamlit as st
code = """
graph TD
A --> B
"""
mermaid = stmd.st_mermaid(code)
st.write(mermaid)
streamlit run example.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.