Skip to content

Commit 45813cb

Browse files
committed
Merge pull request #43622 from ngocnhan-tran1996
* pr/43622: Polish "Handle <p> in Maven Plugin Reference documentation" Handle <p> in Maven Plugin Reference documentation Closes gh-43622
2 parents 12e753c + 1b6b160 commit 45813cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildSrc/src/main/java/org/springframework/boot/build/mavenplugin/PluginXmlParser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -116,6 +116,7 @@ private String format(String input) {
116116
.replace("&lt;", "<")
117117
.replace("&gt;", ">")
118118
.replace("<br>", " ")
119+
.replace("<p>", " ")
119120
.replace("\n", " ")
120121
.replace("&quot;", "\"")
121122
.replaceAll("\\{@code (.*?)}", "`$1`")

0 commit comments

Comments
 (0)