- Code: Select all
<html>
<head>
<title>Some Title</title>
</head>
<body>
<h1>Heading Here.</h1>
<?php
echo "This line was created via php code.<br/>";
echo "So was this line.<br/>";
?>
But this line wasn't.
</body>
</html>
The HTML pieces are formatted okay, but I want the lines within the <?php and ?> section to be indented one level so that it's not in the same column as the <?php and ?> markers. Like this:
- Code: Select all
<?php
echo "This line was created via php code.<br/>";
echo "So was this line.<br/>";
?>
Is there a way to customize either the Reindent Selection feature or create your own Artistic Style?
Thanks,
Richard

