Page 1 of 1

Semantic HTML5 Tags deleted by MicroTiny Editor

Posted: Sat Dec 22, 2012 1:27 pm
by mdeuerlein
Hi there,

I designed a website with CMSMS and a HTML5 Template which uses Semantic HTML5 tags in the {content} section like this:

Code: Select all

<section id="content" class="container clearfix">
Every time I reopen the Page in the CMS-Editor und switch to HTML-Editmode the Tag is deleted. At the Moment I use the following workaround. I disabled the WYSIWYG-Editor in the Template with:

Code: Select all

{content wysiwyg='false'}
Question:
Is there a better way to prevent tags to be deleted in the Editor?

Re: Semantic HTML5 Tags deleted by MicroTiny Editor

Posted: Wed Dec 26, 2012 11:14 pm
by Wishbone
Why are you putting the <section> tag in the editor?

Why not:

Code: Select all

<section id="content" class="container clearfix">
{content}
</section>