我想一段簡單的HTML粘貼到HTML編輯器CKEditor的自動格式(螺絲上)HTML5標籤
<video class="videofile" controls="controls" height="272" poster="poster.jpg" preload="none" tabindex="0" width="480">
<source src="video.mp4" type="video/mp4" />
<source src="video.webm" type="video/webm" />
</video>
然而,當我回去所見即所得,它自動格式化爲例如:
<p><video class="videofile" controls="controls" height="272" poster="poster.jpg" preload="none" tabindex="0" width="480"> <source src="video.mp4" type="video/mp4"> <source src="video.webm" type="video/webm"> </source></source></video></p>
它完全搞砸了(注意標籤)。我如何禁用此功能?我試過將config.FormatOutput和config.AutoParagraph設置爲false。謝謝。
我在CkEditor 4.3中遇到同樣的問題 – 2014-01-16 10:51:11