/trunk/src/main/java/org/kawai/tag/kcode/Code.java |
---|
39,7 → 39,7 |
StringBuilder sb = new StringBuilder(1024 * 10); |
boolean indent = true; |
boolean indent = false; |
if (attrs.containsKey("ul")) { |
indent = attrs.get("ul").equals("true"); |
51,7 → 51,7 |
sb.append("</pre>"); |
if (indent) sb.append("</ul>"); |
boolean noBR = false; |
boolean noBR = true; |
if (attrs.containsKey("noBR")) { |
noBR = attrs.get("noBR").equals("true"); |
} |