this repo has no description
1opam-version: "2.0" 2synopsis: "PPX to write TyXML documents with the HTML syntax" 3description: """ 4```ocaml 5open Tyxml 6let%html to_ocaml = "<a href='ocaml.org'>OCaml!</a>" 7``` 8 9The TyXML PPX allow to write TyXML documents using the traditional HTML syntax. 10It works with textual trees, virtual DOM trees, or any TyXML module. 11""" 12maintainer: ["dev@ocsigen.org"] 13authors: ["The ocsigen team"] 14license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 15homepage: "https://github.com/ocsigen/tyxml" 16doc: "https://ocsigen.org/tyxml/latest/manual/intro" 17bug-reports: "https://github.com/ocsigen/tyxml/issues" 18depends: [ 19 "dune" {>= "2.7"} 20 "ocaml" {>= "4.04"} 21 "tyxml" {= version} 22 "tyxml-syntax" {= version} 23 "alcotest" {with-test} 24 "markup" {>= "0.7.2"} 25 "ppxlib" {>= "0.18" & < "0.36.0"} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/ocsigen/tyxml.git" 43url { 44 src: 45 "https://github.com/ocsigen/tyxml/releases/download/4.6.0/tyxml-4.6.0.tbz" 46 checksum: [ 47 "sha256=bfeb673c6b4e120a4eca4c48448add47dc3f8d02c2b40f63ffdccc4e91c902dd" 48 "sha512=69750eeaf467014282087bf9628f3278f3e5f00f4c7400358750d208664cfc3f79a5cba16767d2935e53477d1a6862fe08c5b801b69052ec12e09d1a93a5e9b4" 49 ] 50} 51x-commit-hash: "d2916535536f2134bad7793a598ba5b7327cae41"