checkpoint
[sbp.git] / src / edu / berkeley / sbp / util / ToHTML.java
index fe3b3a3..34d03bf 100644 (file)
@@ -14,6 +14,11 @@ public interface ToHTML {
             sb.append(s);
         }
 
+        public void appendText(String s) {
+            /* FIXME: escapify this!!! */
+            sb.append(s);
+        }
+
         public void entity(int entity) { sb.append("&#"+entity+";"); }
         public void entity(String entity) { sb.append("&"+entity+";"); }