You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dj...@apache.org on 2020/03/25 16:11:54 UTC

[camel-quarkus] branch djencks-native-mode-syntax-errors-1 created (now e66a887)

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

djencks pushed a change to branch djencks-native-mode-syntax-errors-1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


      at e66a887  Fix asciidoc syntax errors

This branch includes the following new commits:

     new e66a887  Fix asciidoc syntax errors

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-quarkus] 01/01: Fix asciidoc syntax errors

Posted by dj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch djencks-native-mode-syntax-errors-1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit e66a887886330dc0122145ab4a617d15bad7d5f0
Author: djencks <dj...@apache.org>
AuthorDate: Wed Mar 25 09:11:48 2020 -0700

    Fix asciidoc syntax errors
---
 docs/modules/ROOT/pages/native-mode.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/modules/ROOT/pages/native-mode.adoc b/docs/modules/ROOT/pages/native-mode.adoc
index 317e0b9..b4b19f0 100644
--- a/docs/modules/ROOT/pages/native-mode.adoc
+++ b/docs/modules/ROOT/pages/native-mode.adoc
@@ -7,7 +7,7 @@ Things to consider before you run your application in the native mode.
 
 By default only the following `Charsets` are available in the native mode (https://github.com/oracle/graal/blob/vm-19.3.0/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/LocalizationFeature.java#L149-L163[source]):
 
-[code,text]
+[source,text]
 ----
 Charset.defaultCharset(), US-ASCII, ISO-8859-1, UTF-8, UTF-16BE, UTF-16LE, UTF-16
 ----
@@ -16,7 +16,7 @@ If you expect your application to need any encoding not included in this set or
 an `UnsupportedCharsetException` thrown in the native mode, please add the following entry to your
 `application.properties`:
 
-[code,properties]
+[source,properties]
 ----
 quarkus.native.add-all-charsets = true
 ----
@@ -28,7 +28,7 @@ in Quarkus documentation.
 == Embedding resource in native executable
 
 Resources needed at runtime need to be explicitly embedded in the built native executable. In such situations, the `include-patterns` and `exclude-patterns` configurations could be set in `application.properties` as demonstrated below:
-[code,properties]
+[source,properties]
 ----
 quarkus.camel.resources.include-patterns = docs/*,images/*
 quarkus.camel.resources.exclude-patterns = docs/ignored.adoc,images/ignored.png