mimaison commented on a change in pull request #11642: URL: https://github.com/apache/kafka/pull/11642#discussion_r811799998
########## File path: connect/runtime/src/main/java/org/apache/kafka/connect/tools/PredicateDoc.java ########## @@ -61,7 +61,7 @@ private static void printPredicateHtml(PrintStream out, DocInfo docInfo) { out.println("<div id=\"" + docInfo.predicateName + "\">"); out.print("<h5>"); - out.print(docInfo.predicateName); + out.print("<a href=\"#" + docInfo.predicateName + "\">" + docInfo.predicateName + "</a>"); Review comment: Predicates are listed in this section: https://kafka.apache.org/documentation/#connect_predicates Currently the names of predicates are listed but they are not links so we can't easily copy direct links to them. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org