this repo has no description
1opam-version: "2.0" 2maintainer: "dev@ocsigen.org" 3homepage: "https://github.com/ocsigen/tyxml/" 4bug-reports: "https://github.com/ocsigen/tyxml/issues" 5doc: "https://ocsigen.org/tyxml/manual/" 6dev-repo: "git+https://github.com/ocsigen/tyxml.git" 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8 9build: [ 10 ["dune" "subst"] {dev} 11 ["dune" "build" "-p" name "-j" jobs] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13] 14 15depends: [ 16 "ocaml" {>= "4.02"} 17 "dune" 18 "alcotest" {with-test} 19 "seq" 20 "uutf" {>= "1.0.0"} 21 "re" {>= "1.5.0"} 22] 23 24synopsis:"TyXML is a library for building correct HTML and SVG documents" 25description:""" 26TyXML provides a set of convenient combinators that uses the OCaml 27type system to ensure the validity of the generated documents. TyXML 28can be used with any representation of HTML and SVG: the textual one, 29provided directly by this package, or DOM trees (`js_of_ocaml-tyxml`) 30virtual DOM (`virtual-dom`) and reactive or replicated trees 31(`eliom`). You can also create your own representation and use it to 32instantiate a new set of combinators. 33 34```ocaml 35open Tyxml 36let to_ocaml = Html.(a ~a:[a_href "ocaml.org"] [txt "OCaml!"]) 37``` 38""" 39authors: "The ocsigen team" 40url { 41 src: 42 "https://github.com/ocsigen/tyxml/releases/download/4.4.0/tyxml-4.4.0.tbz" 43 checksum: [ 44 "sha256=516394dd4a5c31726997c51d66aa31cacb91e3c46d4e16c7699130e204042530" 45 "sha512=d5f2187f8410524cec7a14b28e8950837070eb0b6571b015dd06076c2841eb7ccaffa86d5d2307eaf1950ee62f9fb926477dac01c870d9c1a2f525853cb44d0c" 46 ] 47}