From: Scott Worley Date: Thu, 26 Sep 2024 00:43:45 +0000 (-0700) Subject: in render_row: name 'cells' X-Git-Tag: v0.3.0~12 X-Git-Url: http://git.scottworley.com/tablify/commitdiff_plain/74bd4cd1e2035284040bbaf894c271423b7a5455 in render_row: name 'cells' --- diff --git a/src/lib.rs b/src/lib.rs index 47e1d3a..357a7ee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -226,12 +226,12 @@ fn render_cell(col: &str, row: &mut Row) -> HTML { fn render_row(columns: &[String], row: &mut Row) -> HTML { let row_label = HTML::escape(row.label.as_ref()); + let cells = columns + .iter() + .map(|col| render_cell(col, row)) + .collect::(); HTML(format!( - "{row_label}{}\n", - &columns - .iter() - .map(|col| render_cell(col, row)) - .collect::() + "{row_label}{cells}\n" )) }