Info
This post is auto-generated from RSS feed The Rust Programming Language Forum - Latest topics. Source: Rust + Wasm web app - markdown to html converter
Hi all!
I just built my first Rust + WebAssembly browser app โ a Markdown-to-HTML converter with live preview, theme switching, and a styled UI. It uses pulldown-cmark
in Rust, compiled to WASM, and runs entirely in the browser.
Itโs mostly CSS and UI styling, but the core logic is Rust-powered and itโs my first time trying WASM.
GitHub repo: https://github.com/Pjdur/myfirstwasm
Setup instructions:
wasm-pack
installed.git clone https://github.com/Pjdur/myfirstwasm
cd myfirstwasm
wasm-pack build --target web
.js
(needed to execute the wasm) over file://
):cargo install miniserve
miniserve .
Or use Python:python -m http.server 8080
Features:
Would love feedback, ideas, or just sharing in case it helps someone else get started with Rust + WASM!
1 post - 1 participant
๐ท๏ธ Rust_feed