Closed robb closed 3 years ago
As per #33, this automatically trims whitespace around child nodes in textarea, to better match developer intent with browser realities.
textarea
textarea { """ Hello World """ }
used to produce
<textarea>¬ ····Hello¬ World¬ <textarea>
and now produces
<textarea>Hello¬ World<textarea>
As per #33, this automatically trims whitespace around child nodes in
textarea
, to better match developer intent with browser realities.used to produce
and now produces