Skip to main content

Milkdown Crepe editor component for Streamlit

Project description

Streamlit Crepe

PyPI version License: MIT Python 3.7+

A rich markdown editor component for Streamlit applications, powered by Milkdown Crepe.

✨ Features

  • 📝 Rich WYSIWYG markdown editing with live preview
  • 🧮 Mathematical formulas with LaTeX support ($...$ and $$...$$)
  • 💻 Code blocks with syntax highlighting for 100+ languages
  • 📊 Interactive tables with mouse and keyboard editing
  • 🖼️ Image upload with automatic compression (max 800px, 500KB)
  • 🔗 Smart links with preview tooltips
  • High performance with Web Worker image processing
  • 🎨 Customizable features - enable only what you need
  • 📱 Responsive design with auto-height adjustment

🚀 Quick Start

Installation

pip install streamlit-crepe

Basic Usage

import streamlit as st
from streamlit_crepe import st_milkdown

# Simple editor
content = st_milkdown("# Hello World")
st.write(content)

Advanced Usage

# Full-featured editor
content = st_milkdown(
    default_value="""# My Document

Write your **markdown** here with full feature support!

## Math
$E = mc^2$

## Code
```python
print("Hello, World!")

Table

Feature Status
Math
Code
Tables
""",
height=400,
features={
    "codeblock": True,  # Code blocks
    "math": True,       # LaTeX formulas  
    "table": True,      # Interactive tables
    "image": True,      # Image uploads
    "link": True        # Link editing
},
placeholder="Start writing your markdown...",
throttle_delay=250

)

st.markdown(content)


## 📖 API Reference

### `st_milkdown()`

```python
st_milkdown(
    default_value: str = "",
    height: Optional[int] = None,
    placeholder: str = "",
    readonly: bool = False,
    features: Optional[Dict[str, bool]] = None,
    throttle_delay: int = 250,
    key: Optional[str] = None
) -> str

Parameters

Parameter Type Default Description
default_value str "" Initial markdown content
height int None Fixed height in pixels (auto if None)
placeholder str "" Placeholder text when empty
readonly bool False Read-only mode
features dict See below Feature configuration
throttle_delay int 250 Update delay in milliseconds
key str None Unique component key

Default Features

{
    "codeblock": True,   # Code blocks
    "math": True,        # LaTeX formulas
    "table": True,       # Interactive tables
    "image": True,       # Image uploads
    "link": True         # Link editing
}

🎛️ Feature Examples

Math Editor

st_milkdown(
    default_value="# Math Editor\n\n$\\int_0^1 x^2 dx = \\frac{1}{3}$",
    features={"math": True, "codeblock": False, "table": False, "image": False, "link": False}
)

Code Editor

st_milkdown(
    default_value="# Code Editor\n\n```python\nprint('Hello!')\n```",
    features={"codeblock": True, "math": False, "table": False, "image": False, "link": False}
)

Simple Text Editor

st_milkdown(
    default_value="# Simple Editor\n\nJust **basic** formatting.",
    features={"codeblock": False, "math": False, "table": False, "image": False, "link": True}
)

🖼️ Image Handling

Images are automatically processed for optimal performance:

  • Automatic compression to max 800px width/height
  • Size optimization to max 500KB file size
  • Format support: PNG, JPEG, GIF, WebP
  • Base64 embedding directly in markdown
  • Async processing with Web Workers (no UI blocking)

⚡ Performance Tips

  1. Disable unused features to reduce bundle size
  2. Use higher throttle_delay for large documents (500-1000ms)
  3. Set fixed height for consistent layout
  4. Use unique keys for multiple editors

🔧 Development

Requirements

  • Python 3.7+
  • Node.js 16+
  • npm

Setup

git clone https://github.com/yourusername/streamlit-crepe.git
cd streamlit-crepe
pip install -e .
python build_frontend.py

Running Tests

python run_tests.py                    # All tests
python run_tests.py --browser          # Browser tests
python run_tests.py --manual           # Manual testing

Building

python build_frontend.py              # Build frontend
python setup.py sdist bdist_wheel     # Create package

📄 License

MIT License - see LICENSE file for details.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

🙏 Acknowledgments

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_crepe-0.1.0.tar.gz (1.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

streamlit_crepe-0.1.0-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

File details

Details for the file streamlit_crepe-0.1.0.tar.gz.

File metadata

  • Download URL: streamlit_crepe-0.1.0.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for streamlit_crepe-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e23d1ba7a2b0cee4c2f1771e031b0e42e8245ed1d20f66cc550805da1a753d58
MD5 206ef164fc2ed0f486f9da0dfba223cb
BLAKE2b-256 529e97a7bb4ba6f0096084aaed46e3fb2c8e7022a4833de94272766cf9785866

See more details on using hashes here.

File details

Details for the file streamlit_crepe-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_crepe-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 704f3a6cfb955f5543b032939757541e37b13ad33c1a4ba211ebfbae0f2ee241
MD5 e642fe3f5400ebcf40f2bea897f440c3
BLAKE2b-256 7dfe8825cad0bb65b9db3aeb02ed8f72a40d236f853203442e7f71de0263bba4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page