I am making a WYSIWYG editor in JavaScript and I will adapt it for meteor Framework to build a CMS:
And an important question pop up in my head. Lot of those editors use (by example Bold button):
<strong>Some Text </strong>
instead of span or p or any else:
<span style="font-weight: bold;">Some Text </span>
So my question is:
What should be considered to produce clean semantic HTML?
For example: deciding between inline styles, CSS classes and the <strong> tag for boldness.
