Home | History | Annotate | Download | only in doclava

Lines Matching full:indent

617     void renderGroupNodesTOCYaml(StringBuilder buf, String indent, Boolean isChild) {
623 if (indent.length() > 0) {
624 buf.append(indent + "section:\n");
628 buf.append(indent + "- title: " + list.get(i).getLabel() + "/\n");
630 buf.append(indent + " path: " + list.get(i).getLink() + "\n");
631 buf.append(indent + " path_attributes:\n");
632 buf.append(indent + " - name: title\n");
633 buf.append(indent + " value: " + list.get(i).getLabel() + "\n");
635 buf.append(indent + " path: \"#\"\n");
636 buf.append(indent + " path_attributes:\n");
637 buf.append(indent + " - name: onclick\n");
638 buf.append(indent + " value: return false;\n");
639 buf.append(indent + " - name: title\n");
640 buf.append(indent + " value: " + list.get(i).getLabel() + "\n");
644 buf.append(indent + "- title: " + list.get(i).getLabel() + "\n");
645 buf.append(indent + " path: " + xmlToHtmlPath + "\n");
648 list.get(i).renderGroupNodesTOCYaml(buf, indent + " ", true);