param :class
should automatically translate to param :className alias: :class
#58
Labels
enhancement
New feature or request
currently, you can say
DIV(class: 'some-class')
and under the hood this gets translated toDIV(className: 'some-class)
For symmetry, it should work the other way around. This can probably be easily done by translating
param :class
toparam :className, alias: :class
The text was updated successfully, but these errors were encountered: