forked from VimPlug/emmet-vim
This change makes the multiple class name expansion work correctly in Elm.
```
div.one.two.three
```
Becomes
```
div [ class "one two three" ] []
```
Previously you would get
```
div [ class "one.two.three" ] []
```
https://github.com/mattn/emmet-vim/issues/382