├── .gitignore ├── LICENSE ├── README.md ├── attributes └── attributes.go ├── elements.go ├── examples └── server │ └── main.go └── htmlgogen ├── attr.go ├── main.go ├── tags.go └── templates ├── attributes └── attributes.go └── elements.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/README.md -------------------------------------------------------------------------------- /attributes/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/attributes/attributes.go -------------------------------------------------------------------------------- /elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/elements.go -------------------------------------------------------------------------------- /examples/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/examples/server/main.go -------------------------------------------------------------------------------- /htmlgogen/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/htmlgogen/attr.go -------------------------------------------------------------------------------- /htmlgogen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/htmlgogen/main.go -------------------------------------------------------------------------------- /htmlgogen/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/htmlgogen/tags.go -------------------------------------------------------------------------------- /htmlgogen/templates/attributes/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/htmlgogen/templates/attributes/attributes.go -------------------------------------------------------------------------------- /htmlgogen/templates/elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julvo/htmlgo/HEAD/htmlgogen/templates/elements.go --------------------------------------------------------------------------------