[Seaside] Re: HTML generation for people who know HTML?

Stefan Scholl stesch at no-spoon.de
Fri Jan 20 15:05:04 UTC 2012


Nick Ager <nick.ager at gmail.com> wrote:
>> Nick Ager <nick.ager at gmail.com> wrote:
>> > and there is always seafox to help you translate:
>> > http://seafox.seasidehosting.st/
>>
>> Doesn't support HTML5 (only as unkown elements), but helps to
>> port some structures.
> 
> Strange - it should support all the Html elements and attributes Seaside
> supports. Is there some specific html that it hasn't translated correctly?


<section>
 <header>
  <h1>foo</h1>
 </header>
 <p>bar</p>
</section>

===>

"Unrecognised element 'section'"
(html tag: 'section') with:[
	"Unrecognised element 'header'"
	(html tag: 'header') with:[
		html heading level: 1; with: 'foo' ].
	html paragraph: 'bar' ]







More information about the seaside mailing list