Prevent Markdownify to strip first p tags

This is what I use in quite many layout files and shortcodes:

{{ if in (string .Inner) "\n\n" }}
  {{ .Inner | markdownify }}
{{ else }}
  <p>{{ .Inner | markdownify }}</p>
{{ end }}
2 Likes