You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2024/01/16 11:56:36 UTC

(camel-k) branch main updated: fix: use relative paths (#5073)

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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new 5b3506460 fix: use relative paths (#5073)
5b3506460 is described below

commit 5b3506460488963813545ad9c0e8150bb2cdb050
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Tue Jan 16 12:56:30 2024 +0100

    fix: use relative paths (#5073)
    
    These links are currently broken and prevent successful website builds.
    
    Docs; https://docs.antora.org/antora/latest/page/page-links/#token
---
 docs/modules/ROOT/pages/languages/languages.adoc | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/modules/ROOT/pages/languages/languages.adoc b/docs/modules/ROOT/pages/languages/languages.adoc
index 7f132fcb8..8cae3b1cf 100644
--- a/docs/modules/ROOT/pages/languages/languages.adoc
+++ b/docs/modules/ROOT/pages/languages/languages.adoc
@@ -8,13 +8,13 @@ Camel K supports multiple languages for writing integrations:
 [cols="30%,70%"]
 |=======================
 | Language			| Description
-| xref:java.adoc[Java]                | Integrations written in Java DSL are supported
-| xref:xml.adoc[XML]                  | Integrations written in plain XML DSL are supported (Spring XML with <beans> or Blueprint XML with <blueprint> not supported)
-| xref:yaml.adoc[YAML]                | Integrations written in YAML DSL are supported
-| xref:groovy.adoc[Groovy]            | Groovy `.groovy` files are supported (experimental)
-| xref:kotlin.adoc[Kotlin]            | Kotlin Script `.kts` files are supported (experimental)
-| xref:jsh.adoc[JShell]               | JShell (Java Shell) `.jsh` files are supported (experimental)
-| xref:javascript.adoc[JavaScript]    | JavaScript `.js` files are supported (experimental)
+| xref:./java.adoc[Java]                | Integrations written in Java DSL are supported
+| xref:./xml.adoc[XML]                  | Integrations written in plain XML DSL are supported (Spring XML with <beans> or Blueprint XML with <blueprint> not supported)
+| xref:./yaml.adoc[YAML]                | Integrations written in YAML DSL are supported
+| xref:./groovy.adoc[Groovy]            | Groovy `.groovy` files are supported (experimental)
+| xref:./kotlin.adoc[Kotlin]            | Kotlin Script `.kts` files are supported (experimental)
+| xref:./jsh.adoc[JShell]               | JShell (Java Shell) `.jsh` files are supported (experimental)
+| xref:./javascript.adoc[JavaScript]    | JavaScript `.js` files are supported (experimental)
 |=======================
 
 More information about each language is located in the language specific sections. Mind that the compatibility of each DSL with Camel will depend on the runtime you'll use to run the Integration.