[TYPO3-v4] CSS styled content for HTML 5 (Draft attached)

Thomas "Thasmo" Deinhamer thasmo at gmail.com
Wed Oct 6 14:35:37 CEST 2010


Am 06.10.2010 12:11, schrieb Ernesto Baschny [cron IT]:
> that is fantastic. I will take a look at it, and we will be very
> interested to get something like that in TYPO3 v4.5.

Thanks - sounds nice!

Of course we (would) need a switch to change between HTML 5 and HTML 4,
but there's much more to think about. In general there are many options
how you would like to generate HTML code.

There is HTML 5, XHTML 5, XHTML 1(.1), HTML 4.
Generally this is all valid HTML 5:
<script type="text/javascript"> /*code*/ </script>
<script> /*code*/ </script> (type defaults to "text/javascript")
<script src="script.js"> (HTML variant, without type attribute)
<script type="text/javascript" src="script.js" /> (XHTML variant)

Furthermore the encoding can be specified this way too:
<head><meta charset="utf-8" /></head>

And it's not only CSC which defines HTML output, there are many
"hardcoded" tags (PageRenderer especially).

So I'd say all in all it could be a lot of work creating a "switch",
because it has to be implemented at several places I think.

Do any related projects/extensions/ideas exist already?

Thanks,
Thomas


More information about the TYPO3-project-v4 mailing list