Two new features: Configure the braces placement of PHP-tidy and select the CSS level for validation.
PHPTidy braces placement
You can configure how braces are being placed when using PHPTidy: Always on the same line, always on a new line and PEAR style. This is how it looks:
Always new line
function test()
{
}
class example()
{
function what()
{
if (true)
{
}
}
}
Always same line
function test() {
}
class example() {
function what() {
if (true) {
}
}
}
PEAR style
function test()
{
}
class example()
{
function what()
{
if (true) {
}
}
}
Select CSS level for validation
Choose if you use CSS level 2, 2.1 oder 3 for the validation. So you don’t get those annoying opacity warnings etc.
Download/Feedback on the Coda PHP & Web Toolkit page ».