19 lines
No EOL
439 B
PHP
Executable file
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);
|
|
?>
|