The shortcodes html :
<div>
{{ range $index, $value := .Inner }}
<div>{{ $value }}</div>
{{ end }}
</div>
The final HTML result when I use range :
<div style="display: flex;flex-direction: column;">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
But I want :
<div style="display: flex;flex-direction: column;">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
How do I remove these extra newlines