summaryrefslogtreecommitdiff
path: root/ocamldoc/odoc_man.ml
diff options
context:
space:
mode:
authorMaxence Guesdon <maxence.guesdon@inria.fr>2004-05-23 10:41:51 +0000
committerMaxence Guesdon <maxence.guesdon@inria.fr>2004-05-23 10:41:51 +0000
commit617fd50c4edd650ce3fa153317d429de24141633 (patch)
tree3cce2c49bfc8ec121595b767273aab5edd6ae0b2 /ocamldoc/odoc_man.ml
parente364e6c25459d37ef058accd414c5555a7b30bb6 (diff)
downloadocaml-617fd50c4edd650ce3fa153317d429de24141633.tar.gz
new ocamldoc syntax elements : {\!modules: M1 M2 ...} to insert the table of modules, {\!indexlist} to insert the list of indexes; these elements are used only in the html generator; the -intro option is now used in html to describe the whole index page
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6313 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamldoc/odoc_man.ml')
-rw-r--r--ocamldoc/odoc_man.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/ocamldoc/odoc_man.ml b/ocamldoc/odoc_man.ml
index e2c4c19a0d..12dc054a94 100644
--- a/ocamldoc/odoc_man.ml
+++ b/ocamldoc/odoc_man.ml
@@ -269,6 +269,10 @@ class man =
bs b "^{"; self#man_of_text2 b t
| Odoc_info.Subscript t ->
bs b "_{"; self#man_of_text2 b t
+ | Odoc_info.Module_list _ ->
+ ()
+ | Odoc_info.Index_list ->
+ ()
(** Print groff string to display code. *)
method man_of_code b s = self#man_of_text b [ Code s ]