diff --git a/tutorial/manpages b/tutorial/manpages
index b8018cde6b1fcadc19fb379c0e25b91be174cc4f..23f226e17d5ad70ff2144cb404cb99259d0e95fb 100644
--- a/tutorial/manpages
+++ b/tutorial/manpages
@@ -4,6 +4,13 @@ inherit Stdio.File : out;
 string globalbase;
 object windex;
 
+// Conversion table:
+//
+// "*"		"\\(**"
+// "\\"		"\\e"
+// "()"		"(\\|)"
+// " - "	" \\- "
+
 void make_page(string base, TAG tag, string ind, string fbase);
 
 void mkdirhier(string what)
@@ -34,8 +41,10 @@ string make_manpage(string base, SGML data, string ind, string fbase)
 	    {
 	       case "method":
 	       case "function":
+	       case "constant":
 	       case "class":
 	       case "module":
+	       case "variable":
 		  make_page(base,tag,ind,fbase);
 		  continue;