ckirkendall / kioo

Enlive/Enfocus style templating for Facebook's React and Om in ClojureScript.
Eclipse Public License 1.0
404 stars 39 forks source link

colSpan disappearing from <td> #24

Closed andrew-nguyen closed 10 years ago

andrew-nguyen commented 10 years ago

I am defining a td in my HTML file as:

<td colSpan="2">

But the resultant element is just a plain

<td data-reactid...>

... without the colSpan.

ckirkendall commented 10 years ago

I will look into this. I think I am siding on translating all attributes from normal to their corresponding react.js attributes. The goal of Kioo is to all designers to build static prototypes and the developer use these with react.js/om/reagent to build the dynamic site. This means that the html you input should be standard html and not reacts jsx version.

On Tue, May 6, 2014 at 5:12 PM, Andrew Nguyen notifications@github.comwrote:

I am defining a td in my HTML file as:

But the resultant element is just a plain ... without the colSpan. — Reply to this email directly or view it on GitHubhttps://github.com/ckirkendall/kioo/issues/24 .
ckirkendall commented 10 years ago

@andrew-nguyen You should now be able to use colSpan or colspan in your html and it will be translated correctly.

thickey commented 9 years ago

@ckirkendall What version is this change available in? Thanks -Tom