archive
/
md-pdf-rs
Archived
1
Fork 0

Fully split different files

This commit is contained in:
Jake Howard 2017-11-26 17:55:00 +00:00
parent 4b08a3836b
commit 5e1451f7ca
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ pub fn read_input_files(files: Vec<PathBuf>) -> Result<String, String> {
input_file.read_to_string(&mut input),
format!("Failed to read input file {}.", input_file_path.display())
));
input.push('\n');
input.push_str("\n\n");
}
return Ok(input);
}