Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.

Commit 61980b4

Browse files
committed
feat: update unicode character
1 parent d70d919 commit 61980b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/ly/doc/function/WordXmlEscape.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class WordXmlEscape implements Function {
4242
* Represents a non-breaking space character (U+00A0) commonly used in Word documents.
4343
* In HTML, this character is typically represented as " ".
4444
*/
45-
private static final String UNICODE_NON_BREAK_SPACE = " ";//""\u00A0";
45+
private static final String UNICODE_NON_BREAK_SPACE = "\u00A0";
4646
private static final Map<String, String> XML_ESCAPE_MAP;
4747

4848
static {

0 commit comments

Comments
 (0)