From 493dc568928ec6a01a7bb5354dd719c90c662bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Sat, 16 Mar 2024 17:38:57 +0100 Subject: [PATCH] FIX: Properly format title in function list --- wiki/functions.md | 4 +++- xlsx/src/bin/documentation.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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)); }