Is it possible to pass html-tag I want to use in shortcode in shortcode parameter?
Like this:
{{< section
section-bg-color=“second-accent-color”
title="<h1>We know our work well, let us prove it to you!</h1>"
title-text-align=“center”
title-font-size=“36”
title-color=“white” >}}
title-tag=“h2” >}}
{{< /section >}}
<{{ .Get "title-tag"}} class="title
{{ with .Get "title-font-size"}}title_fz_{{.}} {{ end }}
{{ with .Get "title-text-align"}}title_ta_{{.}} {{ end }}
{{ with .Get "title-color"}}title_c_{{.}} {{ end }}">
{{ .Get "title" | safeHTML }}
</{{ .Get "title-tag"}}>
{{< section
section-bg-color="second-accent-color"
title="<h1>We know our work well, let us prove it to you!</h1>"
title-text-align="center"
title-font-size="36"
title-color="white"
title-tag="h2" >}}