aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/string.ur
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur/string.ur')
-rw-r--r--lib/ur/string.ur5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ur/string.ur b/lib/ur/string.ur
index 41ec666d..4025cf68 100644
--- a/lib/ur/string.ur
+++ b/lib/ur/string.ur
@@ -37,3 +37,8 @@ fun all f s =
in
al 0
end
+
+fun newlines [ctx] [[Body] ~ ctx] s : xml ([Body] ++ ctx) [] [] =
+ case split s #"\n" of
+ None => cdata s
+ | Some (s1, s2) => <xml>{[s1]}<br/>{newlines s2}</xml>