Mercurial > urweb
view tests/record_page.ur @ 1904:686fa4e7f397
xml/parse: Accept entity files on the command line
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 2 +-
xml/parse.sml | 4 +---
2 files changed, 2 insertions(+), 4 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
type t = {A : string, B : {C : string, D : string}} val page = fn x : t => <html><body> {cdata x.A},{cdata x.B.C},{cdata x.B.D} </body></html> val main : unit -> page = fn () => <html><body> <li><a link={page {A = "A", B = {C = "B", D = "C"}}}>First</a></li> <li><a link={page {A = "D", B = {C = "E", D = "F"}}}>Second</a></li> </body></html>