While this crate's main focus is commonmark, it also supports a subset of Github's markdown syntax: tables, strikethrough, tasklists and footnotes.
In Cargo.toml:
```toml egui_commonmark = "0.8"
image = { version = "0.24", default-features = false, features = ["png"] } ```
```rust use egui_commonmark::*; let markdown = r"# Hello world
let mut cache = CommonMarkCache::default(); CommonMarkViewer::new("viewer").show(ui, &mut cache, markdown); ```
better_syntax_highlighting
: Syntax highlighting inside code blocks with
syntect
svg
: Support for viewing svg imagesfetch
: Images with urls will be downloaded and displayedLicensed under either of
at your option.