includes/wikiengine/Render/Plain.php
author Dan
Sun, 22 Mar 2009 00:44:09 -0400
changeset 880 218b6d4de908
parent 1 fe660c52c48f
permissions -rw-r--r--
JSON: Properly handles unicode escape sequences (\u####) now

<?php

class Text_Wiki_Render_Plain extends Text_Wiki_Render {
    
    function pre()
    {
        return;
    }
    
    function post()
    {
        return;
    }
    
}
?>