diff --git a/tutorial/Html.pmod b/tutorial/Html.pmod
index fc8a064654e752dfce5a27be4215d088a850fbfa..2afe69d62864648924e8c89f38d349db8980799a 100644
--- a/tutorial/Html.pmod
+++ b/tutorial/Html.pmod
@@ -34,7 +34,6 @@ void create()
     case '.':
     case ';':
     case ':':
-    case '`':
       break;
 
     default:
@@ -61,6 +60,7 @@ string mktag(string tag, mapping params)
       switch(i)
       {
 	case "href":
+	case "name":
 	  ret+="='"+quote_param(params[i])+"'";
 	  break;