This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
type Html = | |
| Tag of string * Html list | |
| Attribute of string * string | |
| Content of string | |
override __.ToString() = | |
match __ with | |
| Tag (tag,htmls) -> | |
let mutable attributes = "" |