Why does code formatting add line breaks and tabs inside textarea that contains php?
If I have the following formatted as it is as I don't want any extra spaces inside the textarea:
<textarea name="someVariable" id="someVariable" rows="10"><?php echo $someVariable; ?></textarea>
I want to do code formatting on entire document but it turns above into:
<textarea name="someVariable" id="someVariable" rows="10">
<?php echo $someVariable; ?></textarea>
which adds unwanted white space inside the textarea field. It adds a line break, 3 tabs, line break, two tabs inside the textarea. How can I prevent this from happening while still being able to use code format?
I looked in the Edit > Preferences > Code Format > Tag Libraries > HTML tags > textarea and have:
Line Breaks: No Line Breaks
Contents: Not Formatted
I looked in the Edit > Preferences > Code Format > Tag Libraries > PHP tags I have the following for everything:
Line Breaks: No Line Breaks
