I'd like to be able to send multiline parameter to a procedure.Let's say I have a procedure called foo which take a string argument. I'd like my user to be able to do something like :foo
Very long
mulitline
parameter
end foo
(--------)
Hello A.,
Awaiting new newline management..
For that you can use %newline or %n builtin function, as:
@startuml !unquoted procedure $foo(s) file f [ s ] !endprocedure $foo(a%newline()b%n()\ Very long%newline()\ mulitline\ %n()\ parameter) @enduml
Seea also:
Enjoy,Regards,Th.