about summary refs log tree commit diff stats
path: root/el/document.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2020-10-28 16:16:18 +0100
committerGitHub2020-10-28 16:16:18 +0100
commit18e90339fcac48806a5777766aeb256be2b8c4bc (patch)
tree7b5bd103e15db8a4ed81981e6b83b0d547d34540 /el/document.go
parent8f17dba6f1268ab8c8810d7940d1484315cdb825 (diff)
downloadgomponents-18e90339fcac48806a5777766aeb256be2b8c4bc.tar.lz
gomponents-18e90339fcac48806a5777766aeb256be2b8c4bc.tar.zst
gomponents-18e90339fcac48806a5777766aeb256be2b8c4bc.zip
Add element helpers and refactor (#34)
This change adds a lot of element helpers, and refactors:
- helpers into simple, text, and other helpers
- most tests into table-driven tests, so they're easier to read

Thanks to @oderwat for pushing me to improve the tests. 😉
Diffstat (limited to 'el/document.go')
-rw-r--r--el/document.go57
1 files changed, 0 insertions, 57 deletions
diff --git a/el/document.go b/el/document.go
deleted file mode 100644
index 370a124..0000000
--- a/el/document.go
+++ /dev/null
@@ -1,57 +0,0 @@
-// Package el provides shortcuts and helpers to common HTML elements.
-// See https://developer.mozilla.org/en-US/docs/Web/HTML/Element for a list of elements.
-package el
-
-import (
-	"strings"
-
-	g "github.com/maragudk/gomponents"
-)
-
-// Document returns an special kind of Node that prefixes its children with the string "<!doctype html>".
-func Document(children ...g.Node) g.NodeFunc {
-	return func() string {
-		var b strings.Builder
-		b.WriteString("<!doctype html>")
-		for _, c := range children {
-			b.WriteString(c.Render())
-		}
-		return b.String()
-	}
-}
-
-// HTML returns an element with name "html" and the given children.
-func HTML(children ...g.Node) g.NodeFunc {
-	return g.El("html", children...)
-}
-
-// Head returns an element with name "head" and the given children.
-func Head(children ...g.Node) g.NodeFunc {
-	return g.El("head", children...)
-}
-
-// Body returns an element with name "body" and the given children.
-func Body(children ...g.Node) g.NodeFunc {
-	return g.El("body", children...)
-}
-
-// Title returns an element with name "title" and a single Text child.
-func Title(title string) g.NodeFunc {
-	return g.El("title", g.Text(title))
-}
-
-func Meta(children ...g.Node) g.NodeFunc {
-	return g.El("meta", children...)
-}
-
-func Link(children ...g.Node) g.NodeFunc {
-	return g.El("link", children...)
-}
-
-func Style(children ...g.Node) g.NodeFunc {
-	return g.El("style", children...)
-}
-
-func Base(children ...g.Node) g.NodeFunc {
-	return g.El("base", children...)
-}