From 1851b0e19be05320ad2585dbcc93c1326dd1c20d Mon Sep 17 00:00:00 2001 From: Tamas Balog Date: Sat, 20 Jan 2024 16:51:39 +0100 Subject: [PATCH] #1105: Fix some broken link formatting (cherry picked from commit af2da0eb2b69dd172c0d35dcb43af71d96ad4a99) --- src/manual/endpoint-camel.adoc | 4 ++-- src/manual/endpoint-channel.adoc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/manual/endpoint-camel.adoc b/src/manual/endpoint-camel.adoc index 1e283e59b8..14dda2c562 100644 --- a/src/manual/endpoint-camel.adoc +++ b/src/manual/endpoint-camel.adoc @@ -1,7 +1,7 @@ [[apache-camel]] = Apache Camel support -[Apache Camel](https://camel.apache.org) is a fantastic Open Source integration framework that empowers you to quickly +link:https://camel.apache.org[Apache Camel] is a fantastic Open Source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. Camel implements the enterprise integration patterns for building mediation and routing rules in your software. @@ -1083,4 +1083,4 @@ public class CamelDataFormatIT extends TestNGCitrusSpringSupport { ---- The example above uses the `base64` data format provided in Camel to marshal/unmarshal the message content to/from a base64 encoded String. -Camel provides support for many data formats as you can see in the [documentation on data formats](https://camel.apache.org/components/latest/dataformats/index.html). +Camel provides support for many data formats as you can see in the link:https://camel.apache.org/components/latest/dataformats/index.html[documentation on data formats]. diff --git a/src/manual/endpoint-channel.adoc b/src/manual/endpoint-channel.adoc index f8461ecb9d..4af3151d57 100644 --- a/src/manual/endpoint-channel.adoc +++ b/src/manual/endpoint-channel.adoc @@ -2,7 +2,7 @@ = Message channel support Message channels represent the in memory messaging solution in Citrus. Producer and consumer components are linked via channels -exchanging messages in memory. The transport comes from Spring Integration project (https://spring.io/projects/spring-integration[https://spring.io/projects/spring-integration]). +exchanging messages in memory. The transport comes from the link:https://spring.io/projects/spring-integration[Spring Integration] project. This opens up a lot of great possibilities to interact with the Spring Integration transport adapters for FTP, TCP/IP and so on. In addition to that the message channel support provides us a good way to exchange messages in memory.