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