Thanks @Myra,
Unfortunately, you can't just plop and in between textarea's closing an opening tags. It's correct that <textarea /> isn't correct, but:
<textarea></textarea> is.
<textarea> </textarea> puts a default space in every text area, which looks unprofessional especially when the text wraps. You won't see that on any textarea on the web.
I'm not sure what the magic is behind the scenes and why it can't output as <textarea></textarea> instead of <textarea />, but hopefully they can make this correction. For now, I'll go ahead and use javascript to clear the , but that's just another indication that this can be done.