mdr 0.6.0

A lightweight Markdown viewer with live reload and multiple rendering backends
1
2
3
4
5
6
7
8
#[cfg(feature = "egui-backend")]
pub mod egui;

#[cfg(feature = "tui-backend")]
pub mod tui;

#[cfg(feature = "webview-backend")]
pub mod webview;