asterism 0.5.5

Hyperbolic navigation for tree data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! A tree-sitter document section editor.
//!
//! asterism uses ratatui to provide hierarchical navigation of markdown documents
//! and edtui to emulate a vim editor for section content editing.
#![allow(clippy::multiple_crate_versions)]

pub mod app_state;
pub mod config;
pub mod edit_plan;
pub mod formats;
pub mod highlight;
pub mod input;
pub mod section;
pub mod ui;