mervick / yii2-mthaml

The MtHaml integration for the Yii2 framework.
MIT License
8 stars 1 forks source link

Cannot use attributes with dashes in them, like 'data-item' #4

Open starrychloe opened 9 years ago

starrychloe commented 9 years ago

This doesn't work:

    .star-rating{title: $rating, data-url: $model->url}

Yields

syntax error, unexpected ':'
    <div <?php echo MtHaml\Runtime::renderAttributes(array(array('class', 'star-rating'), array('title', $rating), MtHaml\Runtime\AttributeList::create((data-url: $model->url))), 'html5', 'UTF-8'); ?>>

Neither does this:

    .star-rating{title: $rating, 'data-url': $model->url}

Yields

syntax error, unexpected ':'
    <div <?php echo MtHaml\Runtime::renderAttributes(array(array('class', 'star-rating'), array('title', $rating), MtHaml\Runtime\AttributeList::create(('data-url': $model->url))), 'html5', 'UTF-8'); ?>>
starrychloe commented 9 years ago

Got this to work:

    .star-rating{:title => $rating, 'data-url' => $model->url}