src/Pure/Thy/thy_read.ML
changeset 2188 6c217c071b97
parent 2030 474b3f208789
child 2244 dacee519738a
equal deleted inserted replaced
2187:07c471510cf1 2188:6c217c071b97
  1093             | escape ("&"::s) = "&" ^ escape s
  1093             | escape ("&"::s) = "&" ^ escape s
  1094             | escape (c::s)   = c ^ escape s;
  1094             | escape (c::s)   = c ^ escape s;
  1095       in case !cur_htmlfile of
  1095       in case !cur_htmlfile of
  1096              Some out =>
  1096              Some out =>
  1097                (mk_theorems_title out;
  1097                (mk_theorems_title out;
  1098                 output (out, "<EM>" ^ name ^ "</EM>\n<PRE>" ^
  1098                 output (out, "<DD><EM>" ^ name ^ "</EM>\n<PRE>" ^
  1099                              escape 
  1099                              escape 
  1100 			      (explode 
  1100 			      (explode 
  1101 			       (string_of_thm (#1 (freeze_thaw thm)))) ^
  1101 			       (string_of_thm (#1 (freeze_thaw thm)))) ^
  1102                              "</PRE><P>\n")
  1102                              "</PRE><P>\n")
  1103                )
  1103                )