I'm using October for my backend and a Vue.js app for rendering. My problem is that bold text saved in my database with Builder / Richeditor is not rendered as bold in my Vue.js app.
<p><strong>Duis convallis purus.</strong> suspendisse lobortis pharetra tempor....
Richeditor saves the bold with a <strong>
tag instead of <b>
and Vue doesn't render the bold this way with a template using the v-html
directive :
<div v-html="myHTMLdata"></div>
I found this topic which summarize the problem : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
Is there a way to tell October to use <b>
instead ?
Or maybe the solution could be in Vue.js ?
I searched a lot and didn't find any solution. Thanks for your help !