whitespace-pre-line
doesn't seem to be working for me. I attempted to replicate the same code from my text editor on https://play.tailwindcss.com/, and it worked perfectly. Below is a screenshot that I have attached.
This is the sample code in my text editor:
export default function App() {
return (
<div>
<p className="whitespace-pre-line">
Just for
demonstration
purpose
</p>
</div>
);
}
The result is displayed here:
https://i.sstatic.net/Pcioa.png
This is the sample code in play.tailwindcss.com
<div>
<p class="whitespace-pre-line">
Just for
demonstration
purpose
</p>
</div>
The result is displayed here: https://i.sstatic.net/BTffL.png