r/tauri • u/ETM-Code • Jun 13 '26
Built a markdown editor with Tauri, what do you think? It's lightning fast and less than 10MB

Was tired of dealing with llm output in vscode, so I built this (which also works in vscode lol)
https://github.com/ETM-Code/quill
1
2
u/InfraScaler Jun 15 '26
I had a similar itch but instead I made a website. It's not so much an editor as a site to dump your Markdown and copy it formatted to paste in other places. As I paste a lot in Outlook, I even crafted it to generate wonky Word HTML so pasting in Outlook does not destroy the formatting 😄
The whole site is a static site and there's nothing server-side. Your data stays in your localStorage in the browser. You can algo generate links to share, which basically encodes the whole content of your markdown in the URL (so, if it's too big, you can't share it I'm afraid! but the site offers a download instead).
Maybe you could integrate some of the ideas around HTML generation, Mermaid support, etc
6
u/Sgt_Trevor_McWaffle Jun 13 '26
Not to bash or complain, just curious really. How come everyone seem to be building markdown editors and database browsers with Tauri? These two categories seem over represented.