summaryrefslogtreecommitdiffstats
path: root/ocamldoc/odoc_latex.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_latex.ml
parente364e6c25459d37ef058accd414c5555a7b30bb6 (diff)
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_latex.ml')
-rw-r--r--ocamldoc/odoc_latex.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/ocamldoc/odoc_latex.ml b/ocamldoc/odoc_latex.ml
index 786581ddc..788a2aaf8 100644
--- a/ocamldoc/odoc_latex.ml
+++ b/ocamldoc/odoc_latex.ml
@@ -241,6 +241,8 @@ class text =
| Odoc_info.Ref (name, ref_opt) -> self#latex_of_Ref fmt name ref_opt
| Odoc_info.Superscript t -> self#latex_of_Superscript fmt t
| Odoc_info.Subscript t -> self#latex_of_Subscript fmt t
+ | Odoc_info.Module_list _ -> ()
+ | Odoc_info.Index_list -> ()
method latex_of_Raw fmt s =
ps fmt (self#escape s)