@@ -22,8 +22,7 @@ let convert_syntax : Odoc_document.Renderer.syntax Arg.conv =
22
22
23
23
let convert_directory ?(create = false ) () : Fs.Directory.t Arg.conv =
24
24
let dir_parser, dir_printer =
25
- Arg. conv_parser Arg. string ,
26
- Arg. conv_printer Arg. string
25
+ (Arg. conv_parser Arg. string , Arg. conv_printer Arg. string )
27
26
in
28
27
let odoc_dir_parser str =
29
28
let () = if create then Fs.Directory. (mkdir_p (of_string str)) in
@@ -1704,41 +1703,41 @@ let () =
1704
1703
Printexc. record_backtrace true ;
1705
1704
let cmd_make (term , info ) = Cmd. v info term in
1706
1705
let subcommands =
1707
- List. map ~f: cmd_make @@
1708
- [
1709
- Occurrences.Count. (cmd, info ~docs: section_pipeline);
1710
- Occurrences.Aggregate. (cmd, info ~docs: section_pipeline);
1711
- Compile. (cmd, info ~docs: section_pipeline);
1712
- Compile_asset. (cmd, info ~docs: section_pipeline);
1713
- Odoc_link. (cmd, info ~docs: section_pipeline);
1714
- Odoc_html. generate ~docs: section_pipeline;
1715
- Odoc_html. generate_source ~docs: section_pipeline;
1716
- Odoc_html. generate_asset ~docs: section_pipeline;
1717
- Support_files_command. (cmd, info ~docs: section_pipeline);
1718
- Compile_impl. (cmd, info ~docs: section_pipeline);
1719
- Indexing. (cmd, info ~docs: section_pipeline);
1720
- Sidebar. (cmd, info ~docs: section_pipeline);
1721
- Odoc_manpage. generate ~docs: section_generators;
1722
- Odoc_latex. generate ~docs: section_generators;
1723
- Odoc_html_url. (cmd, info ~docs: section_support);
1724
- Odoc_latex_url. (cmd, info ~docs: section_support);
1725
- Targets.Support_files. (cmd, info ~docs: section_support);
1726
- Odoc_error. (cmd, info ~docs: section_support);
1727
- Odoc_html. targets ~docs: section_support;
1728
- Odoc_html. targets_source ~docs: section_support;
1729
- Odoc_manpage. targets ~docs: section_support;
1730
- Odoc_latex. targets ~docs: section_support;
1731
- Depends.Compile. (cmd, info ~docs: section_support);
1732
- Targets.Compile. (cmd, info ~docs: section_support);
1733
- Html_fragment. (cmd, info ~docs: section_legacy);
1734
- Odoc_html. process ~docs: section_legacy;
1735
- Odoc_manpage. process ~docs: section_legacy;
1736
- Odoc_latex. process ~docs: section_legacy;
1737
- Depends.Link. (cmd, info ~docs: section_legacy);
1738
- Css. (cmd, info ~docs: section_deprecated);
1739
- Depends.Odoc_html. (cmd, info ~docs: section_deprecated);
1740
- Classify. (cmd, info ~docs: section_pipeline);
1741
- ]
1706
+ List. map ~f: cmd_make
1707
+ @@ [
1708
+ Occurrences.Count. (cmd, info ~docs: section_pipeline);
1709
+ Occurrences.Aggregate. (cmd, info ~docs: section_pipeline);
1710
+ Compile. (cmd, info ~docs: section_pipeline);
1711
+ Compile_asset. (cmd, info ~docs: section_pipeline);
1712
+ Odoc_link. (cmd, info ~docs: section_pipeline);
1713
+ Odoc_html. generate ~docs: section_pipeline;
1714
+ Odoc_html. generate_source ~docs: section_pipeline;
1715
+ Odoc_html. generate_asset ~docs: section_pipeline;
1716
+ Support_files_command. (cmd, info ~docs: section_pipeline);
1717
+ Compile_impl. (cmd, info ~docs: section_pipeline);
1718
+ Indexing. (cmd, info ~docs: section_pipeline);
1719
+ Sidebar. (cmd, info ~docs: section_pipeline);
1720
+ Odoc_manpage. generate ~docs: section_generators;
1721
+ Odoc_latex. generate ~docs: section_generators;
1722
+ Odoc_html_url. (cmd, info ~docs: section_support);
1723
+ Odoc_latex_url. (cmd, info ~docs: section_support);
1724
+ Targets.Support_files. (cmd, info ~docs: section_support);
1725
+ Odoc_error. (cmd, info ~docs: section_support);
1726
+ Odoc_html. targets ~docs: section_support;
1727
+ Odoc_html. targets_source ~docs: section_support;
1728
+ Odoc_manpage. targets ~docs: section_support;
1729
+ Odoc_latex. targets ~docs: section_support;
1730
+ Depends.Compile. (cmd, info ~docs: section_support);
1731
+ Targets.Compile. (cmd, info ~docs: section_support);
1732
+ Html_fragment. (cmd, info ~docs: section_legacy);
1733
+ Odoc_html. process ~docs: section_legacy;
1734
+ Odoc_manpage. process ~docs: section_legacy;
1735
+ Odoc_latex. process ~docs: section_legacy;
1736
+ Depends.Link. (cmd, info ~docs: section_legacy);
1737
+ Css. (cmd, info ~docs: section_deprecated);
1738
+ Depends.Odoc_html. (cmd, info ~docs: section_deprecated);
1739
+ Classify. (cmd, info ~docs: section_pipeline);
1740
+ ]
1742
1741
in
1743
1742
let main =
1744
1743
let print_default () =
0 commit comments