From a0ade3a0ef40fe1da9e27af6ad6c6635dde30bbb Mon Sep 17 00:00:00 2001 From: Eric Tuvesson Date: Wed, 18 Oct 2023 14:10:05 +0200 Subject: [PATCH] fix: String Format node markdown format error (#42) --- nodes/string-manipulation/string-format/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nodes/string-manipulation/string-format/README.md b/nodes/string-manipulation/string-format/README.md index 1485fb1..b7a1dbf 100644 --- a/nodes/string-manipulation/string-format/README.md +++ b/nodes/string-manipulation/string-format/README.md @@ -35,7 +35,6 @@ The String Format node needs a format input wh ## Outputs -| Data | Description | -| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| Formatted | The formatted string, e.g. if the string format is _{Hours} hours ago_ and the _Hours_ input is connected to a value of _9_ the | -| formatted string will be _9 hours ago_. | +| Data | Description | +| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Formatted | The formatted string, e.g. if the string format is "_{Hours} hours ago_" and the _Hours_ input is connected to a value of _9_, the formatted string will be _9 hours ago_. |