블록 본문에 내용을 추가하고 을 전체 HTML로 사용할 때 이상한 동작을 발견했습니다. <b>
태그가 <strong>
태그로 변환되고 있습니다. 내 스타일링을 올바르게 할 수 없습니다. TinyMCE 3.5.8
모듈을 전체 html로 사용하고 있습니다. 누군가이 작업의 원인이 될 수있는 도움을 줄 수 있습니까?전체 HTML을 입력 형식으로 사용할 때 태그가 변환됩니다.
입력 :
<div class='content>'
<b>Lorem Ipsum</b>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
출력 :
<div class='content>'
<strong>Lorem Ipsum</strong>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
tanx @Filippos :) – Outlooker