├── .gitignore ├── LICENSE ├── README.md ├── doc-tools.opam ├── dune-project ├── esy.lock ├── .gitattributes ├── .gitignore ├── index.json ├── opam │ ├── alcotest.0.8.3 │ │ └── opam │ ├── astring.0.8.3 │ │ └── opam │ ├── base-bytes.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── biniou.1.2.0 │ │ └── opam │ ├── bisect_ppx.1.3.4 │ │ └── opam │ ├── bos.0.2.0 │ │ └── opam │ ├── cmdliner.1.0.2 │ │ └── opam │ ├── conf-m4.1 │ │ └── opam │ ├── conf-which.1 │ │ └── opam │ ├── cppo.1.6.5 │ │ └── opam │ ├── dune.1.3.0 │ │ └── opam │ ├── easy-format.1.3.1 │ │ └── opam │ ├── fmt.0.8.8 │ │ └── opam │ ├── fpath.0.7.2 │ │ └── opam │ ├── jbuilder.transition │ │ └── opam │ ├── js-build-tools.113.33.04 │ │ └── opam │ ├── lambdasoup.0.6.3 │ │ └── opam │ ├── logs.0.7.0 │ │ └── opam │ ├── markup.0.8.2 │ │ └── opam │ ├── merlin.3.2.2 │ │ └── opam │ ├── num.1.3 │ │ ├── files │ │ │ └── installation-warning.patch │ │ └── opam │ ├── oasis.0.4.11 │ │ ├── files │ │ │ └── oasis.install │ │ └── opam │ ├── ocaml-migrate-parsetree.1.1.0 │ │ └── opam │ ├── ocamlbuild.0.14.0 │ │ └── opam │ ├── ocamlfind.1.8.0 │ │ ├── files │ │ │ ├── no-awk-check.patch │ │ │ ├── ocaml-stub │ │ │ └── ocamlfind.install │ │ └── opam │ ├── ocamlify.0.0.1 │ │ ├── files │ │ │ └── ocamlify.install │ │ └── opam │ ├── ocamlmod.0.0.9 │ │ ├── files │ │ │ ├── _oasis_remove_.ml │ │ │ └── ocamlmod.install │ │ └── opam │ ├── ppx_tools_versioned.5.2.2 │ │ └── opam │ ├── re.1.9.0 │ │ └── opam │ ├── result.1.3 │ │ └── opam │ ├── rresult.0.6.0 │ │ └── opam │ ├── seq.0.2.2 │ │ └── opam │ ├── sexplib.v0.10.0 │ │ └── opam │ ├── stdlib-shims.0.1.0 │ │ └── opam │ ├── topkg.1.0.1 │ │ └── opam │ ├── tyxml.4.3.0 │ │ └── opam │ ├── uchar.0.0.2 │ │ └── opam │ ├── uutf.1.0.2 │ │ └── opam │ └── yojson.1.7.0 │ │ └── opam └── overrides │ ├── opam__s__num_opam__c__1.3_opam_override │ ├── files │ │ └── num-1.3.patch │ └── package.json │ ├── opam__s__oasis_opam__c__0.4.11_opam_override │ ├── files │ │ └── oasis-0.4.11.patch │ └── package.json │ ├── opam__s__ocaml_migrate_parsetree_opam__c__1.1.0_opam_override │ ├── files │ │ └── ocaml-migrate-parsetree.1.1.0.patch │ └── package.json │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ ├── files │ │ └── ocamlbuild-0.14.0.patch │ └── package.json │ ├── opam__s__ocamlfind_opam__c__1.8.0_opam_override │ ├── files │ │ └── findlib-1.8.0.patch │ └── package.json │ ├── opam__s__ocamlify_opam__c__0.0.1_opam_override │ ├── files │ │ └── esy-fix.patch │ └── package.json │ └── opam__s__sexplib_opam__c__v0.10.0_opam_override │ ├── files │ └── winconfigure │ └── package.json ├── package.json └── src ├── Main.ml └── dune /.gitignore: -------------------------------------------------------------------------------- 1 | _esy 2 | _output 3 | node_modules 4 | .merlin 5 | doc-tools.install 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/README.md -------------------------------------------------------------------------------- /doc-tools.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.3) 2 | -------------------------------------------------------------------------------- /esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/.gitattributes -------------------------------------------------------------------------------- /esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/.gitignore -------------------------------------------------------------------------------- /esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/index.json -------------------------------------------------------------------------------- /esy.lock/opam/alcotest.0.8.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/alcotest.0.8.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/astring.0.8.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/astring.0.8.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-bytes.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/base-bytes.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-unix.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/base-unix.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/biniou.1.2.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/biniou.1.2.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/bisect_ppx.1.3.4/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/bisect_ppx.1.3.4/opam -------------------------------------------------------------------------------- /esy.lock/opam/bos.0.2.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/bos.0.2.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/cmdliner.1.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/cmdliner.1.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/conf-m4.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/conf-m4.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/conf-which.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/conf-which.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/cppo.1.6.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/cppo.1.6.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune.1.3.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/dune.1.3.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/easy-format.1.3.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/easy-format.1.3.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/fmt.0.8.8/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/fmt.0.8.8/opam -------------------------------------------------------------------------------- /esy.lock/opam/fpath.0.7.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/fpath.0.7.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/jbuilder.transition/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/jbuilder.transition/opam -------------------------------------------------------------------------------- /esy.lock/opam/js-build-tools.113.33.04/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/js-build-tools.113.33.04/opam -------------------------------------------------------------------------------- /esy.lock/opam/lambdasoup.0.6.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/lambdasoup.0.6.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/logs.0.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/logs.0.7.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/markup.0.8.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/markup.0.8.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/merlin.3.2.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/merlin.3.2.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/num.1.3/files/installation-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/num.1.3/files/installation-warning.patch -------------------------------------------------------------------------------- /esy.lock/opam/num.1.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/num.1.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/oasis.0.4.11/files/oasis.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/oasis.0.4.11/files/oasis.install -------------------------------------------------------------------------------- /esy.lock/opam/oasis.0.4.11/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/oasis.0.4.11/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocaml-migrate-parsetree.1.1.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocaml-migrate-parsetree.1.1.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlbuild.0.14.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlbuild.0.14.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.0/files/no-awk-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlfind.1.8.0/files/no-awk-check.patch -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.0/files/ocaml-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlfind.1.8.0/files/ocaml-stub -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.0/files/ocamlfind.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlfind.1.8.0/files/ocamlfind.install -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlfind.1.8.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlify.0.0.1/files/ocamlify.install: -------------------------------------------------------------------------------- 1 | bin: ["_build/src/ocamlify"] 2 | -------------------------------------------------------------------------------- /esy.lock/opam/ocamlify.0.0.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlify.0.0.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlmod.0.0.9/files/_oasis_remove_.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlmod.0.0.9/files/_oasis_remove_.ml -------------------------------------------------------------------------------- /esy.lock/opam/ocamlmod.0.0.9/files/ocamlmod.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlmod.0.0.9/files/ocamlmod.install -------------------------------------------------------------------------------- /esy.lock/opam/ocamlmod.0.0.9/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ocamlmod.0.0.9/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppx_tools_versioned.5.2.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/ppx_tools_versioned.5.2.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/re.1.9.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/re.1.9.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/result.1.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/result.1.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/rresult.0.6.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/rresult.0.6.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/seq.0.2.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/seq.0.2.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/sexplib.v0.10.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/sexplib.v0.10.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/stdlib-shims.0.1.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/stdlib-shims.0.1.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/topkg.1.0.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/topkg.1.0.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/tyxml.4.3.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/tyxml.4.3.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uchar.0.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/uchar.0.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/uutf.1.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/uutf.1.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/yojson.1.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/opam/yojson.1.7.0/opam -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__num_opam__c__1.3_opam_override/files/num-1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__num_opam__c__1.3_opam_override/files/num-1.3.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__num_opam__c__1.3_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__num_opam__c__1.3_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__oasis_opam__c__0.4.11_opam_override/files/oasis-0.4.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__oasis_opam__c__0.4.11_opam_override/files/oasis-0.4.11.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__oasis_opam__c__0.4.11_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__oasis_opam__c__0.4.11_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocaml_migrate_parsetree_opam__c__1.1.0_opam_override/files/ocaml-migrate-parsetree.1.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocaml_migrate_parsetree_opam__c__1.1.0_opam_override/files/ocaml-migrate-parsetree.1.1.0.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocaml_migrate_parsetree_opam__c__1.1.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocaml_migrate_parsetree_opam__c__1.1.0_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.0_opam_override/files/findlib-1.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.0_opam_override/files/findlib-1.8.0.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.0_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlify_opam__c__0.0.1_opam_override/files/esy-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlify_opam__c__0.0.1_opam_override/files/esy-fix.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlify_opam__c__0.0.1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__ocamlify_opam__c__0.0.1_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__sexplib_opam__c__v0.10.0_opam_override/files/winconfigure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__sexplib_opam__c__v0.10.0_opam_override/files/winconfigure -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__sexplib_opam__c__v0.10.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/esy.lock/overrides/opam__s__sexplib_opam__c__v0.10.0_opam_override/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/package.json -------------------------------------------------------------------------------- /src/Main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/src/Main.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rescript-association/doc-tools/HEAD/src/dune --------------------------------------------------------------------------------