Browse Source

Formatting >:(

master
Dylan Baker 5 years ago
parent
commit
bc5e8a2e20
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/main.rs

+ 6
- 1
src/main.rs View File

@@ -64,7 +64,12 @@ fn render_post(cwd: &path::PathBuf, layout: &str, post_template: &str, post: &Po
64 64
     ).expect("Unable to write file");
65 65
 }
66 66
 
67
-fn render_post_listing(cwd: &path::PathBuf, layout: &str, post_item_template: &str, posts: &Vec<Post>) {
67
+fn render_post_listing(
68
+    cwd: &path::PathBuf,
69
+    layout: &str,
70
+    post_item_template: &str,
71
+    posts: &Vec<Post>,
72
+) {
68 73
     let post_listing = posts
69 74
         .iter()
70 75
         .map(|ref post| {

Loading…
Cancel
Save