My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add odoc-standalone package scaffolding

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+29
+20
odoc-standalone/dune-project
··· 1 + (lang dune 3.21) 2 + (using dune_site 0.1) 3 + (name odoc-standalone) 4 + (generate_opam_files true) 5 + 6 + (license ISC) 7 + (authors "Anil Madhavapeddy") 8 + (maintainers "Anil Madhavapeddy <anil@recoil.org>") 9 + 10 + (package 11 + (name odoc-standalone) 12 + (synopsis "Self-contained HTML shell plugin for odoc") 13 + (description 14 + "An odoc shell plugin that inlines all CSS and JavaScript into each \ 15 + generated HTML page, producing self-contained documentation files \ 16 + that work without a separate support-files directory. Fonts are \ 17 + loaded from Google Fonts CDN with system font fallbacks.") 18 + (depends 19 + (ocaml (>= 4.14)) 20 + odoc))
+9
odoc-standalone/src/dune
··· 1 + (library 2 + (public_name odoc-standalone.impl) 3 + (name odoc_standalone) 4 + (libraries odoc.html odoc.html_support_files odoc.extension_api)) 5 + 6 + (plugin 7 + (name odoc-standalone) 8 + (libraries odoc-standalone.impl) 9 + (site (odoc extensions)))