This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch squakez-patch-1 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7f613745bd4a41d90a4ec2bc4eff78db75e1df73 Author: Pasquale Congiusti <[email protected]> AuthorDate: Mon Jul 24 10:17:46 2023 +0200 fix(docs): add code notation Fix the warning check: ``` YN0000: [build:antora ] [build:antora-perf] [07:04:34.320] WARN (asciidoctor): skipping reference to missing attribute: color ``` --- docs/user-manual/modules/ROOT/pages/route-template.adoc | 4 ++-- 1 file 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 68b41e855ff..6a396020f85 100644 --- a/docs/user-manual/modules/ROOT/pages/route-template.adoc +++ b/docs/user-manual/modules/ROOT/pages/route-template.adoc @@ -285,9 +285,9 @@ Then notice how the simple predicate is using _simple fluent builder_ `simple("{ This is **not supported** with route templates and would not work when creating multiple routes from the template. Instead, the simple expression should be a literal String value _only_ as follows: - +---- .when(simple("'{{color}}' == 'red'") - +---- === Using hardcoded node IDs in route templates If route templates contains hardcoded node IDs then routes created from templates will use the same IDs
