mlux 1.14.0

A rich Markdown viewer for modern terminals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod build;
mod content_index;
mod markup;
mod markup_html;
mod markup_util;
mod typst_compile;
mod world;

pub use build::BuildParams;
pub use build::build_tiled_document;
pub(crate) use build::{compile_and_dump, compile_and_tile};
pub use content_index::{
    BlockMapping, BoundIndex, ContentIndex, MdPosition, SpanKind, TextSpan, rendered_to_source_byte,
};
pub use markup::{Prescan, markdown_to_typst, prescan};
pub use typst_compile::{compile_document, dump_document, render_frame_to_png};
pub use world::{FontCache, MluxWorld};