8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
display_list
renderer
1 parent a1007dd commit 71b1eb5Copy full SHA for 71b1eb5
src/lib.rs
@@ -41,7 +41,6 @@
41
//!
42
//! Finally, `impl Display` into a final `String` output.
43
44
-mod display_list;
45
pub mod renderer;
46
mod snippet;
47
src/display_list/mod.rs renamed to src/renderer/display_list.rs
src/renderer/mod.rs
@@ -31,12 +31,13 @@
31
//! let renderer = Renderer::styled();
32
//! println!("{}", renderer.render(snippet));
33
34
+mod display_list;
35
mod margin;
36
pub(crate) mod stylesheet;
37
-use crate::display_list::DisplayList;
38
use crate::snippet::Snippet;
39
pub use anstyle::*;
40
+use display_list::DisplayList;
pub use margin::Margin;
use std::fmt::Display;
use stylesheet::Stylesheet;
0 commit comments