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
14
15
16
17
18
mod app;
mod app_state;
mod dialogs;
mod editor;
mod grep_panel;
mod highlighting;
mod markdown_preview;
mod menu;
mod previews;
mod search_panel;
mod tab;
mod theme;

pub use app::LalaApp;
pub use app_state::AppState;
pub use editor::EditorPanel;
pub use highlighting::SyntaxHighlighter;
pub use tab::EditorTabState;