Hello !
I would like to override {{content}} helper html tags when I edit my text from ghost admin to add specific classes :
-
<h1>Title 1</h1>
-><h1 class="font-bold text-3xl">Title 1</h1>
-
<h2>Title 2</h2>
-><h2 class="font-bold text-2xl">Title 2</h2>
-
<h3>Title 3</h3>
-><h3 class="font-bold text-xl">Title 3</h3>
-
<p>Text</p>
-><p class="my-2">Text</p>
Itβs because I use tailwindcss
Thanks