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 "tyxml" {= version}
20 "markup" {>= "0.7.2"}
21 "ppx_tools_versioned"
22]
23
24synopsis:"PPX that allows to write TyXML documents with the HTML syntax"
25description:"""
26
27```ocaml
28open Tyxml
29let%html to_ocaml = "<a href='ocaml.org'>OCaml!</a>"
30```
31
32The TyXML PPX is compatible with all TyXML instance, from textual trees
33to reactive virtual DOM trees.
34"""
35authors: "The ocsigen team"
36url {
37 src:
38 "https://github.com/ocsigen/tyxml/releases/download/4.3.0/tyxml-4.3.0.tbz"
39 checksum: [
40 "sha256=6e1bd76b184eb8bf43550138fa1e14f03b5761187ff38891179a36bdddbdbfc3"
41 "md5=fd834a567f813bf447cab5f4c3a723e2"
42 ]
43}