[ https://issues.apache.org/jira/browse/DOXIA-710?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17800820#comment-17800820 ]
ASF GitHub Bot commented on DOXIA-710: -------------------------------------- kwin commented on code in PR #180: URL: https://github.com/apache/maven-doxia/pull/180#discussion_r1437134790 ########## doxia-core/src/main/java/org/apache/maven/doxia/index/IndexEntry.java: ########## @@ -53,10 +56,41 @@ public class IndexEntry { */ private List<IndexEntry> childEntries = new ArrayList<>(); + public enum Type { + /** + * Used for unknown types but also for the root entry + */ + UNKNOWN, + SECTION_1, + SECTION_2, + SECTION_3, + SECTION_4, + SECTION_5, + SECTION_6, + DEFINED_TERM, + FIGURE, + TABLE; + + static Type fromSectionLevel(int level) { + if (level < SECTION_1.ordinal() || level > SECTION_6.ordinal()) { Review Comment: Indeed, fixed in https://github.com/apache/maven-doxia/pull/180/commits/bc5b7ad641f5369ef14e4aa26529d49d01870e6e > Inconsistent anchors between toc macro and headers > -------------------------------------------------- > > Key: DOXIA-710 > URL: https://issues.apache.org/jira/browse/DOXIA-710 > Project: Maven Doxia > Issue Type: Bug > Reporter: Slawomir Jaranowski > Assignee: Konrad Windszus > Priority: Critical > > In markdown document add: > {code:java} > <!-- MACRO{toc|fromDepth=2} --> > {code} > Then anchors generated by toc macro looks like: {{#Your_First_Mojo}} > and anchors generated by skin looks like: {{#your-first-plugin}} > - Doxia Site Renderer 2.0.0-M4 > - Fluido Skin 1.11.1 > Tested on Maven main site without more investigate. -- This message was sent by Atlassian Jira (v8.20.10#820010)