What's Changed
* Add support to double-curly-braces syntax in addition of the vue-like syntax for passing arguments to components by jpsca in https://github.com/jpsca/jinjax/pull/80
Both of these are now valid:
html+jinja
<Example
columns={{ 2 }}
tabbed={{ False }}
panels={{ {'one': 'lorem', 'two': 'ipsum'} }}
class={{ 'bg-' + color }}
/>
<Example
:columns="2"
:tabbed="False"
:panels="{'one': 'lorem', 'two': 'ipsum'}"
:class="'bg-' + color"
/>
**Full Changelog**: https://github.com/jpsca/jinjax/compare/0.41...0.42