aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/js/src/html/CustomTags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/js/src/html/CustomTags.scala')
-rw-r--r--dottydoc/js/src/html/CustomTags.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/dottydoc/js/src/html/CustomTags.scala b/dottydoc/js/src/html/CustomTags.scala
new file mode 100644
index 000000000..af1016f20
--- /dev/null
+++ b/dottydoc/js/src/html/CustomTags.scala
@@ -0,0 +1,13 @@
+package dotty.tools.dottydoc
+package js
+package html
+
+import scalatags.JsDom.all._
+import scalatags.generic
+import scalatags.generic.Util
+import org.scalajs.dom
+
+object CustomTags {
+ lazy val main = "main".tag[dom.html.Element]
+ lazy val nav = "nav".tag[dom.html.Element]
+}