lala 0.1.0

A modern, lightweight text editor with GUI and CLI support for Markdown, HTML, Mermaid, and LaTeX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Lala - Modern Text Editor
//!
//! A lightweight and fast text editor written in Rust with egui.

pub mod cli;
pub mod core;
pub mod core_engine;
pub mod file_tree;
pub mod gui;
pub mod llm;
pub mod search; // LLM integration (optional feature)

pub use gui::LalaApp;