For example:
loopTags: ['for', 'each']
<each loop="item in array">
{{ item }}
</each>
<for loop="item in array">
{{ item }}
</for>
Currently it doesn't work, because the plugin only looks at the first tag in loopTags, it sees that it's for, and it fails.
Working on a PR right now.