Open moesoha opened 3 years ago
The spider did not include the space (0x20) as a char, but that is a very important glyph for typesetting.
I can see a char "#" in the code to make sure the text is not empty, so I have just changed || '#' to + ' ' to solve the two problems simultaneously.
|| '#'
+ ' '
The spider did not include the space (0x20) as a char, but that is a very important glyph for typesetting.
I can see a char "#" in the code to make sure the text is not empty, so I have just changed
|| '#'
to+ ' '
to solve the two problems simultaneously.