yellow/system/core/core_rawhtml.php

19 lines
435 B
PHP
Executable file

<?php
// Copyright (c) 2013 Datenstrom, http://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);
?>