this repo has no description
1opam-version: "2.0" 2 3maintainer: "Anton Bachin <antonbachin@yahoo.com>" 4authors: "Anton Bachin <antonbachin@yahoo.com>" 5homepage: "https://github.com/aantron/markup.ml" 6doc: "http://aantron.github.io/markup.ml" 7bug-reports: "https://github.com/aantron/markup.ml/issues" 8dev-repo: "git+https://github.com/aantron/markup.ml.git" 9license: "BSD-3-Clause" 10 11depends: [ 12 "ocaml" {< "5.0"} 13 "jbuilder" {>= "1.0+beta17"} 14 "ounit" {with-test} 15 "uchar" 16 "uutf" {>= "1.0.0"} 17] 18depopts: [ 19 "lwt" 20] 21# Markup.ml implicitly requires OCaml 4.02.3, as this is a contraint of 22# Jbuilder. Without that, Markup.ml implicitly requires OCaml 4.01.0, as this is 23# a constraint of Uutf. Without *that*, Markup.ml works on OCaml 3.11 or 24# earlier. 25 26build: [ 27 ["ocaml" "src/configure.ml"] 28 ["jbuilder" "build" "-p" name "-j" jobs] 29] 30synopsis: "Error-recovering functional HTML5 and XML parsers and writers" 31description: """ 32Markup.ml provides an HTML parser and an XML parser. The parsers are wrapped in 33a simple interface: they are functions that transform byte streams to parsing 34signal streams. Streams can be manipulated in various ways, such as processing 35by fold, filter, and map, assembly into DOM tree structures, or serialization 36back to HTML or XML. 37 38Both parsers are based on their respective standards. The HTML parser, in 39particular, is based on the state machines defined in HTML5. 40 41The parsers are error-recovering by default, and accept fragments. This makes it 42very easy to get a best-effort parse of some input. The parsers can, however, be 43easily configured to be strict, and to accept only full documents. 44 45Apart from this, the parsers are streaming (do not build up a document in 46memory), non-blocking (can be used with threading libraries), lazy (do not 47consume input unless the signal stream is being read), and process the input in 48a single pass. They automatically detect the character encoding of the input 49stream, and convert everything to UTF-8.""" 50url { 51 src: "https://github.com/aantron/markup.ml/archive/0.7.7.tar.gz" 52 checksum: [ 53 "sha256=fbb1083e659d57e4ec4ad1ac2bdaa7cde73449ee896f731d7af982211efb9b70" 54 "md5=44b9dca277115c478ebbde081de43436" 55 ] 56}