Moved HTML5 helpers to subpackage

This commit is contained in:
2019-03-24 19:56:24 -06:00
parent e5b056c1c1
commit 239ffa7ac2
4 changed files with 24 additions and 12 deletions

View File

@ -1,7 +1,8 @@
package main
import (
h "gitlab.codemonkeysoftware.net/b/hatmill"
"gitlab.codemonkeysoftware.net/b/hatmill"
h "gitlab.codemonkeysoftware.net/b/hatmill/html5"
"os"
)
@ -16,5 +17,5 @@ func main() {
),
),
)
h.WriteDocument(os.Stdout, document)
hatmill.WriteDocument(os.Stdout, document)
}