Metadata-Version: 2.4
Name: instaui-shiki
Version: 0.4.1
Summary: A Python package for instaui-shiki.
Author-email: CrystalWindSnake <568166495@qq.com>
License-Expression: MIT
License-File: LICENSE
Keywords: gui,shiki,syntax-highlighting,ui,web
Requires-Python: <3.14,>=3.9
Requires-Dist: instaui>=0.6.3
Description-Content-Type: text/markdown

# instaui-shiki

<div align="center">

English| [简体中文](./README.md)

</div>

## 📖 Introduction
instaui-shiki is a Python library for syntax highlighting code snippets in the browser using [Shiki](https://github.com/shikijs/shiki).


## ⚙️ Installation

```bash
pip install instaui-shiki
```

## 🖥️ Usage
```python
from instaui import ui
from instaui_shiki import shiki

@ui.page("/")
def test_page():
    shiki("print('foo')")


ui.server(debug=True).run()
```

