this repo has no description
1opam-version: "2.0"
2synopsis: "Static website generator based on HTML rewriting"
3description: """
4A website generator that works with page element tree rather than text
5and allows you to manipulate pages and retrieve metadata from
6existing HTML using arbitrary CSS selectors.
7
8Built-in functionality includes setting page title, generating ToC and footnotes,
9inserting files/HTML snippets or output of external programs into pages etc.
10
11Metadata extracted from pages can be rendered using Mustache templates or exported to JSON
12and processed with an external script.
13
14Extensible with Lua (2.5) plugins. Can also be used as an HTML processor for existing pages.
15"""
16maintainer: "Daniil Baturin <daniil+opam@baturin.org>"
17authors: "Daniil Baturin <daniil+soupault@baturin.org>"
18license: "MIT"
19homepage: "https://soupault.neocities.org"
20bug-reports: "https://github.com/dmbaturin/soupault/issues"
21dev-repo: "git+https://github.com/dmbaturin/soupault"
22build: [
23 ["dune" "subst"] {dev}
24 ["dune" "build" "-p" name "-j" jobs]
25]
26depends: [
27 "ocaml" {>= "4.08"}
28 "dune" {>= "2.0.0"}
29 "lambdasoup" {= "0.7.0"}
30 "markup" {>= "0.8.2"}
31 "toml" {< "6.0"}
32 "fileutils"
33 "logs"
34 "fmt"
35 "re" {>= "1.7.2"}
36 "ezjsonm"
37 "containers"
38 "stringext"
39 "calendar" {>= "2.00"}
40 "spelll" {>= "0.3"}
41 "mustache" {< "3.2.0"}
42 "tsort" {< "2.0.0"}
43 "lua-ml" {>= "0.9.1"}
44]
45
46url {
47 src: "https://github.com/dmbaturin/soupault/archive/1.9.0.zip"
48 checksum: [
49 "md5=230c0cd277830bea830c745628b41961"
50 "sha512=eb67422216f9b1030601249f37e784faa22fa90902eaa0fc96f772276aa1e24187ea922013098fd326ac3c6ade1f581d2534d0005c54c71e0bdb2b71932625d9"
51 ]
52}