79123137

Date: 2024-10-24 17:55:51
Score: 0.5
Natty:
Report link

Here is another option, in TypeScript:

const addWordBreakAfterUnderscores = (content: string) => {
    // u200B is a zero-width space, which is used to prevent
    // the wordbreak from being visible.
    return content.replaceAll('_', '_\u200B');
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mason Embry