diff --git a/wiki/functions.md b/wiki/functions.md index 9fc9495..cd1195d 100644 --- a/wiki/functions.md +++ b/wiki/functions.md @@ -1,4 +1,6 @@ -# List of Functions implemented in IronCalc\n* AND +# List of Functions implemented in IronCalc + +* AND * FALSE * IF * IFERROR diff --git a/xlsx/src/bin/documentation.rs b/xlsx/src/bin/documentation.rs index 8055e4c..fe07f02 100644 --- a/xlsx/src/bin/documentation.rs +++ b/xlsx/src/bin/documentation.rs @@ -17,7 +17,7 @@ fn main() { panic!("Usage: {} -o ", args[0]); }; let mut doc = Vec::new(); - doc.push(r#"# List of Functions implemented in IronCalc\n"#.to_owned()); + doc.push("# List of Functions implemented in IronCalc\n\n".to_owned()); for function in Model::documentation() { doc.push(format!("* {}\n", &function.name)); }