79429667

Date: 2025-02-11 10:43:56
Score: 0.5
Natty:
Report link

You could do something like this. \u{00A0} represents the Unicode code point for a non-breaking space.

#let full_names = (
  "Gordon\u{00A0}Allport",
  "Kurt\u{00A0}Lewin",
  "Fritz\u{00A0}Heider"
)
#full_names.join(", ")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: EthanNeedsHelpCoding