Я хочу показывать только текст со стилями, но в моем текстовом редакторе летних заметок есть все, включая теги html. Как мне удалить их, не влияя на стили
My e js тег шаблона:
<p id="editor" class="card-text"><%=Rules%></p>
**Summer note script:**
<script>
$(document).ready(function() {
$('#editor').summernote({
// your options... and
maximumImageFileSize: 500*1024, // 500 KB
callbacks:{
onImageUploadError: function(msg){
console.log(msg + ' (1 MB)');
}
}
});
});
</script>
data base :
[![data storing in this formate][1]][1]
**Display as same as in data base :**
[![data showing on screen as same as in db][2]][2]
[1]: https://i.stack.imgur.com/qAQLx.jpg
[2]: https://i.stack.imgur.com/E0ke9.jpg
I want to show the text , image with all the styles .