Feature Request: Improve text formatting in
element for work description
I suggest adding the CSS rule white-space: pre-line to the paragraph element that renders item.description in the work experience section.
Motivation:
Currently, the description is rendered in a <p> without line breaks or bullets correctly shown. This causes multi-line content with \n characters to render as a long blob of text.
Proposed solution:
Add white-space: pre-line; to the class that controls this paragraph, like:
<p className="... whitespace-pre-line">
{item.description}
</p>