Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Side by Side Diff: java/org/chromium/distiller/webdocument/LIEnd.java

Issue 1230583006: Fix for keeping lists structure (Closed) Base URL: https://github.com/chromium/dom-distiller.git@master
Patch Set: Using a new approach to keep list structure. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 package org.chromium.distiller.webdocument;
2
3 public class LIEnd extends PlaceHolderEnd {
4
5 @Override
6 public String generateOutput(boolean textOnly) {
7 if (textOnly) {
8 return "";
9 }
10 return "</li>";
11 }
12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698