# A commonmark viewer for [egui](https://github.com/emilk/egui) [![Crate](https://img.shields.io/crates/v/egui_commonmark_macros.svg)](https://crates.io/crates/egui_commonmark_macros) [![Documentation](https://docs.rs/egui_commonmark_macros/badge.svg)](https://docs.rs/egui_commonmark_macros) showcase This crate is `egui_commonmark`'s compile time variant. It is recommended to use this crate through `egui_commonmark` by enabling the `macros` feature. ## Usage In Cargo.toml: ```toml egui_commonmark = "0.18" # Specify what image formats you want to use image = { version = "0.25", default-features = false, features = ["png"] } ``` ### Example ```rust use egui_commonmark::{CommonMarkCache, commonmark}; let mut cache = CommonMarkCache::default(); let _response = commonmark!(ui, &mut cache, "# ATX Heading Level 1"); ``` Alternatively you can embed a file ### Example ```rust use egui_commonmark::{CommonMarkCache, commonmark_str}; let mut cache = CommonMarkCache::default(); commonmark_str!(ui, &mut cache, "content.md"); ``` ## License Licensed under either of * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) at your option.