Hi, I am using SvelteKit in my project and I am write the richtext as below:
import Storyblok from '../../../storyblokClient';
const handler = (component) => Storyblok.richTextResolver.render(component);
....
<section class="article__body">
{@html handler(blok.body[0].richText)}
</section>
And I see that I have things like
<p><span class> "lorem lorem lorem."</span></p>
... or
<li><p><span class>item one</span></p></li>
Ideally I would like them to be simple and clean, just like
<p> "lorem lorem lorem."</p>
... or
<li>item one</li>
How to achieve that? I notice there is a Github discussion on writing your own schema, but I am not sure how to apply that in my case.