Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.
Axolotlguy edited this page Mar 28, 2026 · 2 revisions

Rewrite app in typescript

It might be easier to do typescript if I want an HTML-based editor. It might also decrease file size if I use something like tauri.

Rewrite Editor System

Right now the Editor is an AvaloniaEdit control. While this is okay for basic text and code editors, its not ideal for complex formatting. I will most likely use Webview and embed an HTML editor into the project.

Add Formatting

Once the Editor System is changed, formatting like color, bold, etc will be added.

Add Export

this will most likely be the hardest. The app will have two main export options:

PDF (for printing and online sharing)

and EPUB (for ebooks)

EPUB should be pretty straightforward, since its just a .zip file with HTML stuff.

PDF might be easier to do with something like PdfSharp.

Clone this wiki locally