출력은 다음과 같다.
▲ 그림 1-5
HTML 코드는 어떻게 들여쓰기할까? 한번 해보자.
String html = "<html>";
String body = "<body>";
String h2 = "<h2>";
String text = "Hello world!";
String closeH2 = "</h2>";
String closeBody = "</body>";
String closeHtml = "</html>";
System.out.println(html.indent(0) + body.indent(4) + h2.indent(8)
+ text.indent(12) + closeH2.indent(8) + closeBody.indent(4)
+ closeHtml.indent(0));
출력은 다음과 같다.
▲ 그림 1-6