Skip to content

Instantly share code, notes, and snippets.

@giacomociti
Created June 12, 2018 21:02
Show Gist options
  • Save giacomociti/44eac83254ecfd17fb499c1a8bf5cb65 to your computer and use it in GitHub Desktop.
Save giacomociti/44eac83254ecfd17fb499c1a8bf5cb65 to your computer and use it in GitHub Desktop.
#r "System.Xml.Linq"
open System.Xml.Linq
let htmlSummary primo secondo =
let tag name content = XElement(XName.Get name, content)
let em (text: string) = tag "em" [| text |]
let li key value = tag "li" [| key; em value |]
[|
li "primo" primo
li "secondo" secondo
|]
|> Array.map box
|> tag "ul"
|> sprintf "<p>today's menu:</p>%A"
htmlSummary
"pasta & fagioli"
"cinghiale mantecato"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment