plugins\markitup\markitup.ajax.php

Simple AJAX previewer for MarkItUp!

copyright
(c) Cotonti Team
license
https://github.com/Cotonti/Cotonti/blob/master/License.txt
<?php
/* ====================
[BEGIN_COT_EXT]
Hooks=ajax
[END_COT_EXT]
==================== */
 
/**
 * Simple AJAX previewer for MarkItUp!
 *
 * @package MarItUp
 * @copyright (c) Cotonti Team
 * @license https://github.com/Cotonti/Cotonti/blob/master/License.txt
 */
 
defined('COT_CODE') or die('Wrong URL');
 
// Preview contents
$text = cot_import('text', 'P', 'HTM');
$style = '<link rel="stylesheet" type="text/css" href="'.$cfg['themes_dir'].'/'.$theme.'/'.$theme.'.css" />'."\n";
cot_sendheaders();
echo $style . '<body class="preview">' . cot_parse($text) . '</body>';