gyro/modules/tidy/start.inc.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * @defgroup Tidy 00004 * @ingroup Modules 00005 * 00006 * Encoding and decoding using Html Tidy library 00007 * 00008 * \attention Requires the Tidy PECL extension: http://pecl.php.net/package/tidy 00009 */ 00010 00011 define('CONVERTER_TIDY', 'tidy'); 00012 // Register Converter 00013 require_once dirname(__FILE__) . '/lib/helpers/converters/htmltidy.converter.php'; 00014 ConverterFactory::register_converter(CONVERTER_TIDY, new ConverterHtmlTidy());