I do find a strange behaviour when i add a content to the body of a block and use the input format
as full html my <b>
tags are being converted to <strong>
tags.I really can't get my styling correctly.I am using TinyMCE 3.5.8
module for full html.Could someone help me what might be causing this action..??
Input:
<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>
Output:
<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>