pjfanning commented on code in PR #670: URL: https://github.com/apache/poi/pull/670#discussion_r1716877850
########## poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/XWPFRun.java: ########## @@ -1564,6 +1564,9 @@ private void _getText(XmlObject o, StringBuilder text) { final Node node = o.getDomNode(); if (XSSFRelation.NS_WORDPROCESSINGML.equals(node.getNamespaceURI())) { switch (node.getLocalName()) { + case "noBreakHyphen": + text.append('‑'); Review Comment: is this a simple minus character or is the Unicode Non-Breaking-Hyphen char (https://www.compart.com/en/unicode/U+2011)? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org