Chromium Code Reviews| Index: java/org/chromium/distiller/webdocument/OLStart.java |
| diff --git a/java/org/chromium/distiller/webdocument/OLStart.java b/java/org/chromium/distiller/webdocument/OLStart.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fdb3b30cdde35ceb18d174e90d8c66497d6cc065 |
| --- /dev/null |
| +++ b/java/org/chromium/distiller/webdocument/OLStart.java |
| @@ -0,0 +1,12 @@ |
| +package org.chromium.distiller.webdocument; |
| + |
| +public class OLStart extends PlaceHolderStart { |
| + |
| + @Override |
| + public String generateOutput(boolean textOnly) { |
| + if (textOnly) { |
| + return ""; |
| + } |
| + return "<ol>"; |
| + } |
| +} |