remove prints
This commit is contained in:
parent
4a5376453d
commit
86b1222005
|
@ -5,12 +5,12 @@ use roxy_tera_parser::TeraParser;
|
|||
use std::{
|
||||
fs::File,
|
||||
io::{BufReader, Error, ErrorKind, Read},
|
||||
path::{self, Path, PathBuf, StripPrefixError}, ops::Deref,
|
||||
path::{self, Path, PathBuf, StripPrefixError},
|
||||
};
|
||||
use toml::Table;
|
||||
|
||||
use glob::{glob, PatternError};
|
||||
use roxy_core::roxy::{Parse, Parser, Roxy};
|
||||
use roxy_core::roxy::{Parser, Roxy};
|
||||
|
||||
#[derive(Clap)]
|
||||
#[command(name = "Roxy")]
|
||||
|
@ -160,7 +160,6 @@ fn main() -> Result<(), RoxyError> {
|
|||
|
||||
context.insert(&path.strip_prefix(&file_path.root_dir).unwrap(), toml);
|
||||
}
|
||||
println!("{context:?}");
|
||||
|
||||
let mut parser = Parser::new();
|
||||
parser.push(MarkdownParser::new());
|
||||
|
|
Loading…
Reference in a new issue