You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2022/11/23 09:37:26 UTC

[camel-quarkus] branch 2.13.x updated: Fix AsciiDoc syntax

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

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


The following commit(s) were added to refs/heads/2.13.x by this push:
     new 1c084271fc Fix AsciiDoc syntax
1c084271fc is described below

commit 1c084271fc1bdbc977a9860c5a927a7d0fa678b1
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Wed Nov 23 10:37:19 2022 +0100

    Fix AsciiDoc syntax
---
 docs/modules/ROOT/pages/reference/extensions/platform-http.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc b/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
index 25be1753e9..bed30597c7 100644
--- a/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/platform-http.adoc
@@ -144,12 +144,12 @@ Platform HTTP component can act as a reverse proxy, in that case `Exchange.HTTP_
 Here's an example of a HTTP proxy that simply redirects the Exchange to the origin server.
 
 [source,java]
-------------------------------------------------------------------------------------------
+----
 from("platform-http:proxy")
     .toD("http://"
         + "${headers." + Exchange.HTTP_HOST + "}");
 
--------------------------------------------------------------------------------------
+----
 
 
 [id="extensions-platform-http-additional-camel-quarkus-configuration"]