in doxia-modules/doxia-module-xdoc/src/main/java/org/apache/maven/doxia/module/xdoc/XdocSink.java [312:324]
protected void onSectionTitle_(int depth) {
if (depth == SECTION_LEVEL_1 || depth == SECTION_LEVEL_2) {
write(String.valueOf(QUOTE) + GREATER_THAN);
} else if (depth == SECTION_LEVEL_3) {
writeEndTag(H3);
} else if (depth == SECTION_LEVEL_4) {
writeEndTag(H4);
} else if (depth == SECTION_LEVEL_5) {
writeEndTag(H5);
} else if (depth == SECTION_LEVEL_6) {
writeEndTag(H6);
}
}