Я хочу использовать Youtube и код Vimeo iframe в редакторе wysihtml5. я использовал
('#answer').wysihtml5();
а также
$('#answer').wysihtml5({
toolbar: {
"font-styles": true, // Font styling, e.g. h1, h2, etc.
"emphasis": true, // Italics, bold, etc.
"lists": true, // (Un)ordered lists, e.g. Bullets, Numbers.
"html": true, // Button which allows you to edit the generated HTML.
"link": true, // Button to insert a link.
"image": true, // Button to insert an image.
"color": false, // Button to change color of font
"blockquote": true, // Blockquote
"size": "sm" // options are xs, sm, lg
}
});
После кода Iframe я использую
<iframe width="560" height="315" src="https://www.youtube.com/embed/zJZKWF7YBas" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
В базе данных я вижу это следующим образом
<p><iframe width="560" height="315" src="<a href="https://www.youtube.com/embed/zJZKWF7YBas"">https://www.youtube.com/embed/zJZKWF7YBas"</a>; frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>?<br></p>
Означает, что он преобразовал iframe src
На экране я вижу это следующим образом.
<iframe width="560" height="315" src="https://www.youtube.com/embed/zJZKWF7YBas"; frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>?
поэтому мой вопрос, почему wysihtml5 меняет iframe src и как я могу это остановить?
Задача ещё не решена.
Других решений пока нет …