Voting

: min(four, three)?
(Example: nine)

The Note You're Voting On

i dot c dot lovett at NOSPAM dot gmail dot com
13 years ago
Anyone trying to specify "indent: auto" as documented at http://tidy.sourceforge.net/docs/quickref.html#indent

<?php
$tidy_options
= array('indent' => 'auto'); // WILL NOT WORK
$tidy_options = array('indent' => 2); // equivalent of auto

$tidy = new Tidy();
$tidy->parseString($html, $tidy_options);
?>

<< Back to user notes page

To Top