yellow/system/core/core_rawhtml.php
2013-04-15 00:41:04 +02:00

19 lines
No EOL
439 B
PHP
Executable file

<?php
// Copyright (c) 2013 Datenstrom, http://www.datenstrom.se
// This file may be used and distributed under the terms of the public license.
// Raw HTML parser core plugin
class Yellow_RawHtml
{
const Version = "0.1.1";
var $html; //generated HTML
// Parse text, dummy transformation
function parse($text)
{
return $this->html = $text;
}
}
$yellow->registerPlugin("rawhtml", "Yellow_RawHtml", Yellow_RawHtml::Version);
?>