|
Whitespace doesn't matter in HTML. If you're really concerned about it though do as rogem002 suggested, or don't tab over for {subtemplate B} (have it left aligned) and just tab over only in the actual subtemplate.
\r is carriage return, if I remember right, Mac uses \r for their new lines, Linux uses \n and windows uses \r\n. Mac ignores \n and Linux ignores \r so using \r\n is actually smartest.
__________________
PHP Code:
<?php echo "Hello World"; ?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
|