mirror of
https://github.com/ocaml/ocaml.git
synced 2026-07-30 17:19:37 +08:00
* a new test ocamldoc
* three new modifiers: html, latex and man for each ocamldoc backend
* new variables:
* plugins
* skip_header_lines, skip_header_bytes
* ocamldoc_{backend,exit_status,flags,output,reference}
* make it possible to skip lines in the result file in text mode
* check_output reads skip_header_{lines,bytes} when comparing
output and reference files
29 lines
1.4 KiB
OCaml
29 lines
1.4 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* OCaml *)
|
|
(* *)
|
|
(* Sebastien Hinderer, projet Gallium, INRIA Paris *)
|
|
(* *)
|
|
(* Copyright 2016 Institut National de Recherche en Informatique et *)
|
|
(* en Automatique. *)
|
|
(* *)
|
|
(* All rights reserved. This file is distributed under the terms of *)
|
|
(* the GNU Lesser General Public License version 2.1, with the *)
|
|
(* special exception on linking described in the file LICENSE. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(* Definition of a few OCaml-specific environment modifiers *)
|
|
|
|
val principal : Environments.modifiers
|
|
|
|
val testing : Environments.modifiers
|
|
|
|
val unix : Environments.modifiers
|
|
|
|
val str : Environments.modifiers
|
|
|
|
val latex: Environments.modifiers
|
|
val man: Environments.modifiers
|
|
val html: Environments.modifiers
|