--- a/src/Pure/Thy/html.ML Fri Dec 04 17:19:59 2009 +0100
+++ b/src/Pure/Thy/html.ML Fri Dec 04 20:03:37 2009 +0100
@@ -49,7 +49,8 @@
local
val html_syms = Symtab.make
- [("\\<spacespace>", (2, " ")),
+ [("'", (1, "'")),
+ ("\\<spacespace>", (2, " ")),
("\\<exclamdown>", (1, "¡")),
("\\<cent>", (1, "¢")),
("\\<pounds>", (1, "£")),
@@ -197,7 +198,8 @@
fun output_sym s =
if Symbol.is_raw s then (1, Symbol.decode_raw s)
else
- (case Symtab.lookup html_syms s of SOME x => x
+ (case Symtab.lookup html_syms s of
+ SOME x => x
| NONE => (size s, XML.text s));
fun output_sub s = apsnd (enclose "<sub>" "</sub>") (output_sym s);