Skip to main content

next_code_frame/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod frame;
4mod highlight;
5
6pub use frame::{
7    CodeFrameColorMode, CodeFrameLocation, CodeFrameOptions, Location, render_code_frame,
8};
9pub use highlight::Language;
10
11#[cfg(test)]
12mod tests;