checkpoint
[sbp.git] / src / edu / berkeley / sbp / tib / TibDoc.java
index b8a4c48..e0414c8 100644 (file)
@@ -11,7 +11,7 @@ import java.util.*;
 import java.io.*;
 
 public class TibDoc {
-
+    /*
     public static Text lf()     { Chars ret = new Chars(); ret.text = "\n"; return ret; }
     public static Text cr()     { Chars ret = new Chars(); ret.text = "\r"; return ret; }
     public static Text emdash() { return new Entity("mdash"); }
@@ -97,8 +97,8 @@ public class TibDoc {
     public static class TT            extends Text.TextArray  { public String tag() { return "tt"; } }
     public static class Underline     extends Text.TextArray  { public String tag() { return "u"; } }
     public static class Italic        extends Text.TextArray  { public String tag() { return "i"; } }
-    public static class Citation      extends Text.TextArray  { /* FIXME */ }
-    public static class Footnote      extends Text.TextArray  { /* FIXME */ }
+    public static class Citation      extends Text.TextArray  { } // FIXME
+    public static class Footnote      extends Text.TextArray  { } // FIXME
     public static class LineBreak     extends Text            { public void toHTML(ToHTML.HTML sb) { sb.tag("br"); } }
     public static class Today         extends Text            { }
     public static class Euro          extends Text            { public void toHTML(ToHTML.HTML sb) { sb.entity(8364); } }
@@ -217,6 +217,7 @@ public class TibDoc {
         }
     }
 
+    */
     /*
         public static void prefix(PrintWriter p) {
             p.println("% generated by TIBDOC");