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 2020/02/11 15:23:43 UTC

[camel-kafka-connector] branch master updated: fix(docs): replace anchor syntax for placeholder

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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


The following commit(s) were added to refs/heads/master by this push:
     new 990a7e0  fix(docs): replace anchor syntax for placeholder
     new 869e543  Merge pull request #89 from zregvart/pr/fix-typo
990a7e0 is described below

commit 990a7e09b7ab5cc592f1bc690c839bc80e19af53
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Tue Feb 11 15:43:33 2020 +0100

    fix(docs): replace anchor syntax for placeholder
    
    The `<<...>>` syntax triggers asciidoctor to render an link to the
    anchor tag, which is detected by the link checker in the build and the
    build fails. This uses the `[...]` syntax to denote a placeholder
    instead.
---
 docs/modules/ROOT/pages/try-it-out-locally.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/modules/ROOT/pages/try-it-out-locally.adoc b/docs/modules/ROOT/pages/try-it-out-locally.adoc
index c0f9dc1..2a5b6ba 100644
--- a/docs/modules/ROOT/pages/try-it-out-locally.adoc
+++ b/docs/modules/ROOT/pages/try-it-out-locally.adoc
@@ -64,7 +64,7 @@ $KAFKA_HOME/bin/kafka-console-producer.sh --broker-list localhost:9092 --topic m
 
 For the following examples you need to fetch the `camel-kafka-connector` project and https://github.com/apache/camel-kafka-connector/blob/master/README.adoc#build-the-project[build] it locally by running `./mvnw package` from the root of the project. Look into the `config` and `examples` directories for the configuration files (`*.properties`) of the examples showcased here.
 
-First you need to set the `CLASSPATH` environment variable to include the `jar` files from the `core/target/camel-kafka-connector-<<version>>-package/share/java/` directory. On UNIX systems this can be done by running:
+First you need to set the `CLASSPATH` environment variable to include the `jar` files from the `core/target/camel-kafka-connector-[version]-package/share/java/` directory. On UNIX systems this can be done by running:
 
 [source,bash]
 ----