X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Ftib%2FTibDoc.java;h=e0414c88b5bf2deca8a8e4149226c5841c92fbbf;hb=76038cc31d71c6e7c0e6352f9c21ebd320e5c0cc;hp=b8a4c489f071b16b7cd5a5805ecbf0b72a1ff96e;hpb=d5e1e502d49f6d59bc912f12522d4ac1e2ac7d87;p=sbp.git diff --git a/src/edu/berkeley/sbp/tib/TibDoc.java b/src/edu/berkeley/sbp/tib/TibDoc.java index b8a4c48..e0414c8 100644 --- a/src/edu/berkeley/sbp/tib/TibDoc.java +++ b/src/edu/berkeley/sbp/tib/TibDoc.java @@ -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");