Remove trailing slashes from all link URLs

Closes gh-43518
This commit is contained in:
Phillip Webb
2024-12-16 10:43:35 -08:00
parent aead737b43
commit 239fa0356f
3 changed files with 21 additions and 21 deletions

View File

@@ -202,7 +202,7 @@ public class AntoraAsciidocAttributes {
}
private void addUrlJava(Map<String, String> attributes) {
attributes.put("url-javase-javadoc", "https://docs.oracle.com/en/java/javase/17/docs/api/");
attributes.put("url-javase-javadoc", "https://docs.oracle.com/en/java/javase/17/docs/api");
attributes.put("javadoc-location-java-beans", "{url-javase-javadoc}/java.desktop");
attributes.put("javadoc-location-java-lang", "{url-javase-javadoc}/java.base");
attributes.put("javadoc-location-java-net", "{url-javase-javadoc}/java.base");