| Crates.io | yew-markdown |
| lib.rs | yew-markdown |
| version | 0.0.1 |
| created_at | 2025-03-07 21:57:17.159218+00 |
| updated_at | 2025-03-07 21:57:17.159218+00 |
| description | A dynamic markdown component for the Yew framework |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1583713 |
| size | 120,438 |
Creating a simple library to render markdown with yew. The best rust crates are involved !
Add yew-markdown to your project:
# Cargo.toml
yew-markdown = {git="https://github.com/rambip/yew-markdown"}
If you just need to render basic markdown, you can do
use yew_markdown::Markdown;
...
html!{
<Markdown src={"# Markdown power !"}/>
}
Take a look at the different examples ! You just need trunk and a web-browser to test them.
the example is included in ./examples/showcase
Here is an illustration:

see here
Of course, an example of a basic markdown editor is implemented to show what is currently supported
see here
see here
see here