sameeroath
Results
1
issues of
sameeroath
Here is my setup. ``` def tidyUp(str: String): String = { val nl = """\n""".r val tidy = new Tidy() tidy.setXmlOut(true) tidy.setXHTML(true) tidy.setInputEncoding("UTF-8") tidy.setOutputEncoding("UTF-8") tidy.setIndentAttributes(false) tidy.setDropProprietaryTags(false) tidy.setIndentContent(false) tidy.setSpaces(0) tidy.setWraplen(Integer.MAX_VALUE) tidy.setPrintBodyOnly(true)...