Skip to main content

next_code_frame/
lib.rs

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