This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch 3.2.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 1b2e8279ae0efc9b7b617521c4ec4c068dcb2a75
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Wed May 1 09:33:00 2024 +0100

    Fixup 891bc5d
---
 docs/modules/ROOT/pages/reference/extensions/facebook.adoc             | 2 +-
 docs/modules/ROOT/pages/reference/extensions/hdfs.adoc                 | 2 +-
 .../org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java     | 3 +++
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/facebook.adoc 
b/docs/modules/ROOT/pages/reference/extensions/facebook.adoc
index b05baf20e3..c541c68cc8 100644
--- a/docs/modules/ROOT/pages/reference/extensions/facebook.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/facebook.adoc
@@ -22,7 +22,7 @@ Send requests to Facebook APIs supported by Facebook4J.
 [id="extensions-facebook-whats-inside"]
 == What's inside
 
-* Facebook component, URI syntax: `facebook:methodName`
+* [Facebook component], URI syntax: `facebook:methodName`
 
 Please refer to the above link for usage and configuration details.
 
diff --git a/docs/modules/ROOT/pages/reference/extensions/hdfs.adoc 
b/docs/modules/ROOT/pages/reference/extensions/hdfs.adoc
index b1e7bfc215..208e3af959 100644
--- a/docs/modules/ROOT/pages/reference/extensions/hdfs.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/hdfs.adoc
@@ -22,7 +22,7 @@ Read and write from/to an HDFS filesystem using Hadoop 3.x.
 [id="extensions-hdfs-whats-inside"]
 == What's inside
 
-* HDFS component, URI syntax: `hdfs:hostName:port/path`
+* [HDFS component], URI syntax: `hdfs:hostName:port/path`
 
 Please refer to the above link for usage and configuration details.
 
diff --git 
a/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java
 
b/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java
index 36bd8aca48..e36635317b 100644
--- 
a/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java
+++ 
b/tooling/maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateExtensionDocPageMojo.java
@@ -197,6 +197,9 @@ public class UpdateExtensionDocPageMojo extends 
AbstractDocGeneratorMojo {
                     xrefPrefix = "xref:manual::";
                     name = "camel-console";
                 }
+                if (name.equals("facebook") || name.equals("hdfs")) {
+                    return "";
+                }
                 return xrefPrefix + name + (!"other".equals(kind) ? "-" + kind 
: "") + ".adoc";
             }
         });

Reply via email to