From 7fdb7cbfb7bbf631c01e5ea8eefd2c219d165c41 Mon Sep 17 00:00:00 2001 From: Fredrik Date: Mon, 21 Mar 2022 09:39:34 +0100 Subject: [PATCH] Fix formatting --- C4_Container.puml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/C4_Container.puml b/C4_Container.puml index b385028..ab642a6 100644 --- a/C4_Container.puml +++ b/C4_Container.puml @@ -55,14 +55,14 @@ endlegend !function $getContainer($label, $techn, $descr, $sprite) !$container = "" !if ($sprite != "") - !$container = $container + $getSprite($sprite)+'\n' + !$container = $container + $getSprite($sprite) + '\n' !endif - !$container = $container + '=='+$label + !$container = $container + '==' + $label !if ($techn != "") - !$container = $container + '\n//['+$techn+']//' + !$container = $container + '\n//[' + $techn + ']//' !endif !if ($descr != "") - !$container = $container + '\n\n '+$descr + !$container = $container + '\n\n' + $descr !endif !return $container !endfunction