diff options
| author | sacerdot | 2004-04-06 17:36:41 +0000 |
|---|---|---|
| committer | sacerdot | 2004-04-06 17:36:41 +0000 |
| commit | beb7869a4065e2cc0bb12a6e8aa5ac86e1c20192 (patch) | |
| tree | 80605ca712dda603d8ea4cf6a9d49b5ade6a0269 | |
| parent | ba97bc1342587e81b7a80c603cb96a30e2a67569 (diff) | |
Important bug fix: since coqdoc is now quoting XML reserved characters in
HTML tags (i.e. # ... #), strong verbatim tags must be now used (i.e. ^ ... ^).
WARNING: it requires the fortcoming commit on coqdoc to work properly.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5644 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | contrib/xml/xmlcommand.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml/xmlcommand.ml b/contrib/xml/xmlcommand.ml index 38c270db5a..feaf1b8087 100644 --- a/contrib/xml/xmlcommand.ml +++ b/contrib/xml/xmlcommand.ml @@ -430,7 +430,7 @@ let theory_buffer = Buffer.create 4000;; let theory_output_string ?(do_not_quote = false) s = (* prepare for coqdoc post-processing *) - let s = if do_not_quote then s else "(** #"^s^"\n#*)\n" in + let s = if do_not_quote then s else "(** ^"^s^"\n^*)\n" in print_if_verbose s; Buffer.add_string theory_buffer s ;; |
