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 2020/07/07 05:50:46 UTC

[camel] branch master updated: CAMEL-15216: Fix asciidoc WARNING in camel-website (#3974)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7c47299  CAMEL-15216: Fix asciidoc WARNING in camel-website (#3974)
7c47299 is described below

commit 7c472998cdadeec9b6012b1702c95dab756a879b
Author: amdmdi <42...@users.noreply.github.com>
AuthorDate: Tue Jul 7 07:50:23 2020 +0200

    CAMEL-15216: Fix asciidoc WARNING in camel-website (#3974)
---
 docs/user-manual/modules/ROOT/pages/route-template.adoc              | 2 +-
 docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/route-template.adoc b/docs/user-manual/modules/ROOT/pages/route-template.adoc
index 817a645..aba0734 100644
--- a/docs/user-manual/modules/ROOT/pages/route-template.adoc
+++ b/docs/user-manual/modules/ROOT/pages/route-template.adoc
@@ -59,7 +59,7 @@ the template accepts. As you can see there are 3 parameters: name, greeting, and
 parameters are mandatory, where as myPeriod is optional as it has a default value of 3s.
 
 The template parameters are then used in the route as regular property placeholders with the `{{ }}` syntax.
-Notice how we use `{{name}} and `{{greeting}}` in the timer endpoint and the simple language.
+Notice how we use `{\{name}}` and `{\{greeting}}` in the timer endpoint and the simple language.
 
 The route can of course also use regular property placeholders as well.
 Now imagine there was a property placeholder with the name greeting:
diff --git a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
index d01cdb2..4add5c6 100644
--- a/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
+++ b/docs/user-manual/modules/faq/pages/how-do-i-configure-endpoints.adoc
@@ -258,7 +258,7 @@ key, as discussed in the following section.
 
 *Since Camel 3.4*
 
-When using `{{key}}` in configuring endpoint URIs then Camel will replace the `{{key}}` while parsing the endpoint URI.
+When using `{\{key}}` in configuring endpoint URIs then Camel will replace the `{\{key}}` while parsing the endpoint URI.
 This has its pros but also a few cons, such as when using sensitive information such as passwords. As we have seen
 in the previous section you can use RAW() syntax. Instead of using RAW() you can use `#property:key` notation,
 as shown in the example below: