I’ve got a code like this:
{{ partial "show-product.html" (dict "param1" "value1" "p2" "v2" "lastp" (slice "a1" "a2" "a3" ) ) }}
Which is hard to read. What I really like to do is to format it like this:
{{ partial
"show-product.html"
(dict
"param1" "value1"
"p2" "v2"
"lastp" (slice
"a1"
"a2"
"a3"
)
)
}}
… which gives me an error. Is there a way to break a command into multiple lines?