Sha256: 1267b60daf0def7b2ae6386b8c8da2c2afd23ee7ef7fa9242b428b903d5c8cb7

Contents?: true

Size: 1.03 KB

Versions: 32

Compression:

Stored size: 1.03 KB

Contents

<?php

if (get_magic_quotes_gpc()) $html = stripslashes($_REQUEST['html']);
else $html = $_REQUEST['html'];

if(strlen($html) > 0) {

  // Specify configuration
  $config = array(
            'bare'                        => true,
            'clean'                       => true,
            'doctype'                     => 'strict',
            'drop-empty-paras'            => true,
            'drop-font-tags'              => true,
            'drop-proprietary-attributes' => true,
            'enclose-block-text'          => true,
            'indent'                      => false,
            'join-classes'                => true,
            'join-styles'                 => true,
            'logical-emphasis'            => true,
            'output-xhtml'                => true,
            'show-body-only'              => true,
            'wrap'                        => 0);

  // Tidy
  $tidy = new tidy;
  $tidy->parseString($html, $config, 'utf8');
  $tidy->cleanRepair();

  // Output
  echo $tidy;
} else {

echo ('0');
}
?>

Version data entries

32 entries across 32 versions & 9 rubygems

Version Path
wymeditor-simple_form-0.0.5 vendor/assets/wymeditor/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.15 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
wymeditor-simple_form-0.0.4 vendor/assets/wymeditor/wymeditor/plugins/tidy/tidy.php
wymeditor-simple_form-0.0.2 vendor/assets/wymeditor/plugins/tidy/tidy.php
wymeditor-simple_form-0.0.1 vendor/assets/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.13 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.12 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.11 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.10 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.9 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.8 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.7 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.6 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.4 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.3 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
milksteak-0.0.2 lib/public/milksteak/wymeditor/plugins/tidy/tidy.php
spree_editor-0.70.0 vendor/assets/javascripts/admin/wymeditor/plugins/tidy/tidy.php
spud_admin-0.2.0 app/assets/javascripts/wymeditor/plugins/tidy/tidy.php
comatose-rubyisbeautiful-3.0.5 public/javascripts/wymeditor/plugins/tidy/tidy.php
comatose-rubyisbeautiful-3.0.4 public/javascripts/wymeditor/plugins/tidy/tidy.php