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.
2 parents 368c576 + bfd5956 commit b0e2ec6Copy full SHA for b0e2ec6
src/main.rs
@@ -62,7 +62,7 @@ fn main() {
62
pattern.replace_all(input_content.as_str(), |captures: &Captures| {
63
let file_path = captures.index(1);
64
let file_name = captures.index(2);
65
- println!("including: {file_path} {file_name}");
+ println!("including: {file_path}/{file_name}");
66
let full_file_path = format!("{file_path}{file_name}");
67
match args.build_mode {
68
BuildMode::Dynamic => format!("This section is migrated. Please see [{file_name}](./{full_file_path})"),
0 commit comments