Skip to content

Commit 2e24e1e

Browse files
committed
dummy
1 parent 0a56ed9 commit 2e24e1e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/fold.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ pub trait DocFolder : Sized {
7777
v.items = v.items.into_iter().filter_map(|i| self.fold_item(i)).collect();
7878
(k, v)
7979
}).collect();
80+
// println!("{:#?}", c); // will output 100+k lines
8081
c
8182
}
8283
}

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ pub fn main_args(args: &[String]) -> isize {
232232
return 1;
233233
}
234234
let input = &matches.free[0];
235+
println!("Input file: {}", input); // -------------------------------------
235236

236237
let mut libs = SearchPaths::new();
237238
for s in &matches.opt_strs("L") {

src/markdown.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ pub fn render(input: &str, mut output: PathBuf, matches: &getopts::Matches,
7676
};
7777

7878
let (metadata, text) = extract_leading_metadata(&input_str);
79+
println!("--- md text ---\n{}", text); // ---------------------------------
7980
if metadata.is_empty() {
8081
let _ = writeln!(&mut io::stderr(),
8182
"invalid markdown file: expecting initial line with `% ...TITLE...`");

0 commit comments

Comments
 (0)