summaryrefslogtreecommitdiff
path: root/next-lib/src/prelude/HTML.gf
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/src/prelude/HTML.gf')
-rw-r--r--next-lib/src/prelude/HTML.gf8
1 files changed, 0 insertions, 8 deletions
diff --git a/next-lib/src/prelude/HTML.gf b/next-lib/src/prelude/HTML.gf
deleted file mode 100644
index b469b582c..000000000
--- a/next-lib/src/prelude/HTML.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-resource HTML = open Prelude in {
- oper
- tag : Str -> Str = \t -> "<" + t + ">" ;
- endtag : Str -> Str = \t -> tag ("/" + t) ;
- intag : Str -> Str -> Str = \t,s -> tag t ++ s ++ endtag t ;
- intagAttr : Str -> Str -> Str -> Str =
- \t,a,s -> ("<" + t) ++ (a + ">") ++ s ++ endtag t ;
-}