This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 050b2ba79ea1 camel-core - Add safeQuote function to simple language
050b2ba79ea1 is described below
commit 050b2ba79ea14c156028b4650a70b814ecbf3216
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jan 30 18:10:52 2026 +0100
camel-core - Add safeQuote function to simple language
---
.../src/main/docs/modules/languages/pages/simple-language.adoc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
b/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
index c536980b241c..49f4f33d2e5f 100644
---
a/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
+++
b/core/camel-core-languages/src/main/docs/modules/languages/pages/simple-language.adoc
@@ -460,8 +460,8 @@ The generator supports different kinds `default`,
`classic`, `short`, `simple` a
|`pad(exp,width,separator)` | `String` | Pads the expression with extra
padding if necessary, according the total width The separator is by default a
space. If the width is negative then padding to the right, otherwise to the
left.
|`replace(from,to)` | `String` | Replace all the string values in the message
body. To make it easier to replace single and double quotes, then you can use
XML escaped values `\"` as double quote, `\'` as single quote, and
`\∅` as empty value.
|`replace(from,to,exp)` | `String` | Replace all the string values in the
given expression. To make it easier to replace single and double quotes, then
you can use XML escaped values `\"` as double quote, `\'` as single
quote, and `\∅` as empty value.
-|`safeQuote() | `String` | Returns the message body safely quoted if needed
-|`safeQuote(exp) | `String` | Returns the expression safely quoted if needed
+|`safeQuote()` | `String` | Returns the message body safely quoted if needed
+|`safeQuote(exp)` | `String` | Returns the expression safely quoted if needed
|`substring(num1)` | `String` | Returns a substring of the message body. If
the number is positive, then the returned string is clipped from the beginning.
If the number is negative, then the returned string is clipped from the ending.
|`substring(num1,num2)` | `String` | Returns a substring of the message body.
If the number is positive, then the returned string is clipped from the
beginning. If the number is negative, then the returned string is clipped from
the ending.
|`substring(num1,num2,exp)` | `String` | Returns a substring of the given
expression. If the number is positive, then the returned string is clipped from
the beginning. If the number is negative, then the returned string is clipped
from the ending.
@@ -473,8 +473,8 @@ The generator supports different kinds `default`,
`classic`, `short`, `simple` a
|`substringBetween(exp,after,before` | `String` | Returns a substring of the
expression that are between before and after. Returns `null` if nothing comes
between.
|`trim()` | `String` | The trim function trims the message body by removing
all leading and trailing white spaces.
|`trim(exp)` | `String` | The trim function trims the expression by removing
all leading and trailing white spaces.
-|`quote() | `String` | Returns the message body as a double-quoted string
-|`quote(exp) | `String` | Returns the expression as a double-quoted string
+|`quote()` | `String` | Returns the message body as a double-quoted string
+|`quote(exp)` | `String` | Returns the expression as a double-quoted string
|`uppercase()` | `String` | Uppercases the message body
|`uppercase(exp)` | `String` | Uppercases the expression
|====