includes/wikiengine/Render/Plain/Newline.php
author Dan
Sat, 12 Jul 2008 00:31:44 -0400
changeset 627 460e483987ab
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed a few more upgrader glitches and polished things a bit more.

<?php

class Text_Wiki_Render_Plain_Newline extends Text_Wiki_Render {
    
    
    function token($options)
    {
        return "\n";
    }
}

?>