You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2023/01/09 20:56:33 UTC

[maven-doxia] branch doxia-1.x updated: [DOXIA-569] fix javadoc

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

hboutemy pushed a commit to branch doxia-1.x
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git


The following commit(s) were added to refs/heads/doxia-1.x by this push:
     new 7b34b7d1 [DOXIA-569] fix javadoc
7b34b7d1 is described below

commit 7b34b7d16e486d9217400a70481180e4ee753f96
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon Jan 9 21:56:30 2023 +0100

    [DOXIA-569] fix javadoc
---
 .../java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java b/doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java
index 88f0a4e4..32b70f71 100644
--- a/doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java
+++ b/doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownMarkup.java
@@ -61,10 +61,10 @@ public interface MarkdownMarkup
     // Markup syntax
     // ----------------------------------------------------------------------
 
-    /** Syntax for the anchor end: "\"></a>" */
+    /** Syntax for the anchor end: "\"&gt;&lt;/a&gt;" */
     String ANCHOR_END_MARKUP = "\"></a>";
 
-    /** Syntax for the anchor start: "<a name=\"" */
+    /** Syntax for the anchor start: "&lt;a name=\"" */
     String ANCHOR_START_MARKUP = "<a name=\"";
 
     /** Syntax for the bold style end: "**" */