this repo has no description
at daceafdde29f6fd5a026147be2ffe395724328fe 14 lines 529 B view raw
1(* Custom odoc binary with the scrollycode extension statically linked. 2 3 The scrollycode extension registers itself when this module is loaded, 4 via the [let () = ...] at the bottom of scrollycode_extension.ml. 5 6 We force it to be linked by referencing it, then invoke the standard 7 odoc CLI entry point. *) 8 9(* Force-link the extension module *) 10let () = 11 ignore (Scrollycode_extension.Scrolly.prefix : string) 12 13(* Include the full odoc CLI - this is main.ml without the dune-site loading *) 14include Odoc_scrolly_main