[Solved] Adding class attribute to <p> tags in {{ .Content }}

You could run .Content through replaceRE (and safeHTML):

{{ .Content | replaceRE "<p>" "<p class=\"mb4 px3\">" | safeHTML }}
8 Likes