You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/05/11 09:20:13 UTC

[camel] branch main updated: Fix link syntax in Camel JBang debugging section (#7590)

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 f27451c4e45 Fix link syntax in Camel JBang debugging section (#7590)
f27451c4e45 is described below

commit f27451c4e4578280a3c5b97b14ff4d3408b0bb62
Author: Aurélien Pupier <ap...@redhat.com>
AuthorDate: Wed May 11 11:20:07 2022 +0200

    Fix link syntax in Camel JBang debugging section (#7590)
    
    markdown style was used but it is an AsciiDoc file
    
    Signed-off-by: Aurélien Pupier <ap...@redhat.com>
---
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index ac277713a84..d2edee1ac56 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -384,15 +384,15 @@ Listening for transport dt_socket at address: 4004
 
 As you can see the default listening port is 4004 but can be configured as described in https://www.jbang.dev/documentation/guide/latest/debugging.html[JBang Debugging].
 
-This is a standard Java debug socket. You can then use the IDE of your choice. For instance, see the generic documentation for [IntelliJ](https://www.jetbrains.com/help/idea/attaching-to-local-process.html#create-rc), [VS Code](https://code.visualstudio.com/docs/java/java-debugging#_attach) and [Eclipse Desktop](https://www.vogella.com/tutorials/EclipseDebugging/article.html#remote-debugging). You will surely want to add `Processor` to be able to put breakpoints hit during route executio [...]
+This is a standard Java debug socket. You can then use the IDE of your choice. For instance, see the generic documentation for https://www.jetbrains.com/help/idea/attaching-to-local-process.html#create-rc[IntelliJ], https://code.visualstudio.com/docs/java/java-debugging#_attach[VS Code] and https://www.vogella.com/tutorials/EclipseDebugging/article.html#remote-debugging[Eclipse Desktop]. You will surely want to add `Processor` to be able to put breakpoints hit during route execution (as  [...]
 
 ==== Camel debugging
 
 The Camel debugger is available by default (the `camel-debug` component is automatically added to the classpath). By default, it can be reached through JMX at the URL `service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi/camel`.
 
-You can then use the Integrated Development Environment (IDE) of your choice. For instance [IntelliJ](https://plugins.jetbrains.com/plugin/9371-apache-camel), [VS Code](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-debug-adapter-apache-camel) or [Eclipse Desktop](https://marketplace.eclipse.org/content/textual-debugging-apache-camel).
+You can then use the Integrated Development Environment (IDE) of your choice. For instance https://plugins.jetbrains.com/plugin/9371-apache-camel[IntelliJ], https://marketplace.visualstudio.com/items?itemName=redhat.vscode-debug-adapter-apache-camel[VS Code] or https://marketplace.eclipse.org/content/textual-debugging-apache-camel[Eclipse Desktop].
 
-A specific how-to is available for VS Code, see this [video](https://youtu.be/owNhWxf42qk) or this [blogpost](/blog/2022/05/start-camel-quarkus-application-with-camel-textual-debug-in-vscode/).
+A specific how-to is available for VS Code, see this https://youtu.be/owNhWxf42qk[video] or this /blog/2022/05/start-camel-quarkus-application-with-camel-textual-debug-in-vscode/[blogpost].
 
 == Open API