We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d99ae46 commit 7823bfaCopy full SHA for 7823bfa
1 file changed
nx/blocks/loc/project/index.js
@@ -124,8 +124,8 @@ function collapseInnerTextSpaces(html) {
124
return match;
125
}
126
127
- // Collapse multiple spaces to single space, trim padding
128
- const cleaned = textContent.replace(/\s+/g, ' ').trim();
+ // Collapse multiple spaces to single space
+ const cleaned = textContent.replace(/\s+/g, ' ');
129
return `>${cleaned}<`;
130
});
131
0 commit comments