for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\Action;
/**
* Class Preview
*
* preview during editing
* @package dokuwiki\Action
*/
class Preview extends Edit {
/** @inheritdoc */
public function preProcess() {
header('X-XSS-Protection: 0');
saveDraft();
parent::preProcess();
}
public function tplContent() {
global $TEXT;
html_edit();
html_show($TEXT);