├── .gitignore ├── LICENSE ├── README.md ├── elm-package.json └── src └── Html ├── Shorthand.elm └── Shorthand ├── Event.elm ├── Internal.elm └── Type.elm /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore build or dist files 2 | /elm-stuff 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/README.md -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/elm-package.json -------------------------------------------------------------------------------- /src/Html/Shorthand.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/src/Html/Shorthand.elm -------------------------------------------------------------------------------- /src/Html/Shorthand/Event.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/src/Html/Shorthand/Event.elm -------------------------------------------------------------------------------- /src/Html/Shorthand/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/src/Html/Shorthand/Internal.elm -------------------------------------------------------------------------------- /src/Html/Shorthand/Type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/circuithub/elm-html-shorthand/HEAD/src/Html/Shorthand/Type.elm --------------------------------------------------------------------------------